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


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


UInt16 Struct的MinValue字段用于表示16位无符号整数(即ushort数据类型)的最小可能值。该字段的值是常量,表示用户无法更改该字段的值。该字段的值为0。如果该整数值不在UInt16类型的范围内,则它还将程序从OverflowException中保存。 UInt16字段的主要用途是先检查Int32值是否在UInt16类型的范围内,然后再将其转换为UInt16值。

用法:

public const ushort MinValue = 0;

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


例:

// C# program to illustrate the 
// UInt16.MinValue field 
using System; 
  
class GFG { 
  
    // Main Method 
    static public void Main() 
    { 
        // display the Minimum value of UInt16 struct 
        Console.WriteLine("Minimum Value is:" + UInt16.MinValue); 
  
        // Taking an array of the  
        // unsigned long integer  
        // i.e UInt64 data type 
        ulong[] num = {232146, 14343, 23122345, 4576863645437}; 
  
        // taking variable of UInt16 type 
        ushort mynum; 
  
        foreach(ulong 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"); 
            } 
        } 
    } 
}

输出:

Minimum Value is:0
Not Possible
Conversion is Possible.
Not Possible
Not Possible

参考:



相关用法


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