How to find if the number is odd using Bitwise AND operator using C# .NET ?

Below is a sample code demonstrating how to How to find if the number is odd using Bitwise AND operator using C# .NET ?

How to find if the number is odd using Bitwise AND operator using C# .NET ?

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

namespace ConsoleApplication1

{

internal class Program

{

private static void Main(string[] args)

{

int input;

input = 75;

if (IsOdd(input))

Console.WriteLine("The Input number is odd");

else

Console.WriteLine("The Input number is Even");

Console.Read();

}

// Abundant Code Function to find if the number is odd using Butwise operator

public static bool IsOdd(int input)

{

return (input & 1) == 1;

}

}

}
How to find if the number is odd using Bitwise AND operator using C# .NET ?