C# แปลง ตัวแปร Array ตัวอักษรให้เป็น ตัวเลข int Number
Tag : .NET, C#
Date :
2011-12-03 06:54:33
By :
agent
View :
2010
Reply :
1
No. 1
Guest
Code (C#)
byte[] bytes = { 0, 0, 0, 25 };
// If the system architecture is little-endian (that is, little end first),
// reverse the byte array.
if (BitConverter.IsLittleEndian)
Array.Reverse(bytes);
int i = BitConverter.ToInt32(bytes, 0);
Console.WriteLine("int: {0}", i);
// Output: int: 25