[go: up one dir, main page]
More Web Proxy on the site http://driver.im/

Javatpoint.com is changed to TpointTech.com

C# Binary Literals

C# Binary Literals feature allows us to deal with binary values in C# application. By using this feature, we can store binary values in variables.

C# provides 0b and 0x literals to create binary and hexadecimal value respectively. C# compiler recognizes these literals and treats values accordingly.

Let's see an example.

C# Binary literals Example

Output:

10
10

We can use digit separator in binary literals to make value more readable.

C# Binary Literal Example

Output:

10
10

Next TopicC# Ref Keyword