How to set binary value to int variable in C#

1 Answer

0 votes
using System;

public class Example
{
	public static void Main(string[] args)
	{
		int bin = 0b11111;

		Console.WriteLine(bin);
	}
}




/*
run:
 
31
 
*/

 



answered Jul 31, 2022 by avibootz

Related questions

1 answer 142 views
1 answer 150 views
150 views asked Jul 31, 2022 by avibootz
1 answer 151 views
1 answer 179 views
1 answer 144 views
1 answer 198 views
1 answer 186 views
...