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


C# UInt32.ToString()用法及代碼示例


C# 中的 UInt32.ToString() 方法用於將當前 UInt32 實例的數值轉換為其等效的字符串表示形式。

用法

以下是語法 -

public override string ToString();

示例

現在讓我們看一個實現 UInt32.ToString() 方法的例子 -

using System;
public class Demo {
   public static void Main(){
      uint val1 = 100;
      uint val2 = 80;
      Console.WriteLine("Value1 (String representation) = "+val1.ToString());
      Console.WriteLine("Value2 (String representation) = "+val2.ToString());
      bool res = val1.Equals(val2);
      Console.WriteLine("Return value (comparison) = "+res);
      if (res)
         Console.WriteLine("val1 = val2");
      else
         Console.WriteLine("val1 != val2");
   }
}

輸出

這將產生以下輸出 -

Value1 (String representation) = 100
Value2 (String representation) = 80
Return value (comparison) = False
val1 != val2

示例

現在讓我們看另一個實現 UInt32.ToString() 方法的例子 -

using System;
public class Demo {
   public static void Main(){
      uint val1 = 0;
      uint val2 = UInt32.MaxValue;
      Console.WriteLine("Value1 (String representation) = "+val1.ToString());
      Console.WriteLine("Value2 (String representation) = "+val2.ToString());
      bool res = val1.Equals(val2);
      Console.WriteLine("Return value (comparison) = "+res);
      if (res)
         Console.WriteLine("val1 = val2");
      else
         Console.WriteLine("val1 != val2");
   }
}

輸出

這將產生以下輸出 -

Value1 (String representation) = 0
Value2 (String representation) = 4294967295
Return value (comparison) = False
val1 != val2

相關用法


注:本文由純淨天空篩選整理自AmitDiwan大神的英文原創作品 UInt32.ToString() Method in C# with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。