USHORT

用於儲存 16 位正整數的數字型別。ushortSystem.UInt16 的別名,佔用 2 個位元組的記憶體。

有效範圍是 065535

ushort a = 50; // 50
ushort b = 65536; // Error, cannot be converted
ushort c = unchecked((ushort)65536); // Overflows (wraps around to 0)