C# 中的 UInt64.ToString() 方法及其示例
C# 中的 UInt64.ToString() 方法用于将当前 UInt64 实例的数字值转换为等效的字符串表示形式。
语法
以下是语法 -
public override string ToString();
public string ToString()
示例
using System; public class Demo { public static void Main(){ ulong val1 = 465656665; ulong val2 = 232525678; 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"); } }
现在让我们看一个示例,以实现 UInt64.ToString() 方法 -
C#
Value1 (String representation) = 465656665 Value2 (String representation) = 232525678 Return value (comparison) = False val1 != val2
public string ToString()
输出
using System; public class Demo { public static void Main(){ ulong val1 = 0; ulong val2 = UInt64.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"); } }
现在让我们看一个示例,以实现 UInt64.ToString() 方法 -
C#
Value1 (String representation) = 0 Value2 (String representation) = 18446744073709551615 Return value (comparison) = False val1 != val2
广告