当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# UInt16.MaxValue用法及代码示例


UInt16 Struct的MaxValue字段用于表示16位无符号整数的最大值。该字段的值是常量,表示用户无法更改该字段的值。该字段的值为65535。其十六进制值为0xFFFF。如果整数值不在UInt16类型的范围内,则用于避免OverflowException。

用法:

public const ushort MaxValue = 65535;

返回值:该字段始终返回65535。


例:

// C# program to illustrate the 
// UInt16.MaxValue field 
using System; 
  
class GFG { 
  
    // Main Method 
    static public void Main() 
    { 
        // display the Maximum value 
        // of UInt16 struct 
        Console.WriteLine("Maximum Value is:" + UInt16.MaxValue); 
  
        // Taking an array of the  
        // unsigned long integer  
        // i.e UInt64 data type 
        ulong[] num = {3422146, 7443, 43535776, 2342534654756123}; 
  
        // taking variable of UInt16 type 
        ushort mynum; 
  
        foreach(long n in num) 
        { 
  
            if (n >= UInt16.MinValue && n <= UInt16.MaxValue)  
                        { 
  
                // using the method of Convert class 
                // to convert Int64 to UInt16 
                mynum = Convert.ToUInt16(n); 
  
                Console.WriteLine("Conversion is Possible."); 
            } 
  
            else 
                        { 
                Console.WriteLine("Not Possible"); 
            } 
        } 
    } 
}

输出:

Maximum Value is:65535
Not Possible
Conversion is Possible.
Not Possible
Not Possible

参考:



相关用法


注:本文由纯净天空筛选整理自ankita_saini大神的英文原创作品 UInt16.MaxValue Field in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。