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


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


UInt32 Struct的MinValue字段用于表示32位无符号整数(即uint数据类型)的最小可能值。该字段的值是常量,表示用户无法更改该字段的值。该字段的值为0。

用法:

public const uint MinValue = 0;

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


例:

// C# program to illustrate the 
// UInt32.MinValue field 
using System; 
  
class GFG { 
  
    // Main Method 
    static public void Main() 
    { 
        // display the Minimum value of UInt32 struct 
        Console.WriteLine("Minimum Value is:" + UInt32.MinValue); 
  
        // Taking an array of the  
        // unsigned long integer  
        // i.e UInt64 data type 
        ulong[] num = {34326, 32434, 12335546464565, 3434234786}; 
  
        // taking variable of UInt32 type 
        uint mynum; 
  
        foreach(ulong n in num) 
        { 
  
            if (n >= UInt32.MinValue && n <= UInt32.MaxValue) { 
  
                // using the method of Convert class 
                mynum = Convert.ToUInt32(n); 
  
                Console.WriteLine("Conversion is Possible."); 
            } 
  
            else { 
                Console.WriteLine("Not Possible"); 
            } 
        } 
    } 
}

输出:

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

参考:



相关用法


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