13
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int hexLiteral = 0x2F;
8
int binaryLiteral = 0b_0010_1111;
9
10
Console.WriteLine(hexLiteral);
11
Console.WriteLine(binaryLiteral);
12
}
13
}
Cached Result
Executando UmaFuncao()
True
80
True
80