111,096
社区成员




static void Main(string[] args)
{
sbyte d = Convert.ToSByte("23", 16);
Console.WriteLine(d);
Console.WriteLine(SByte.MaxValue.ToString("X"));
d = (sbyte)~d;
Console.WriteLine(d.ToString("X"));
Console.ReadLine();
}