當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。