找到关于 C# 的2628 篇文章

C# 中的 Uri.EscapeDataString(String) 方法

AmitDiwan
更新于 2019年11月8日 07:02:07

854 次浏览

C# 中的 Uri.EscapeDataString() 方法将字符串转换为其转义表示形式。语法以下是语法:public static string EscapeDataString (string str);其中,字符串 str 是要转义的字符串。示例现在让我们来看一个实现 Uri.EscapeDataString() 方法的示例:using System; public class Demo {    public static void Main(){       string URI1 = "https://tutorialspoint.com/index.htm";       Console.WriteLine("URI = "+URI1);       string URI2 = "https://tutorialspoint.com/";       Console.WriteLine("URI = "+URI2);       Console.WriteLine("转义字符串 (URI1) = "+Uri.EscapeDataString(URI1));       Console.WriteLine("转义字符串 (URI2) = "+Uri.EscapeDataString(URI2));    } }输出这将产生以下输出… 阅读更多

C# 中带示例的 UInt32.ToString() 方法

AmitDiwan
更新于 2019年11月8日 07:00:29

2K+ 次浏览

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 (字符串表示) = "+val1.ToString());       Console.WriteLine("Value2 (字符串表示) = "+val2.ToString());       bool res = val1.Equals(val2);       Console.WriteLine("返回值 (比较) = "+res);       if (res) … 阅读更多

C# 中带示例的 UInt32.MinValue 字段

AmitDiwan
更新于 2019年11月13日 05:48:39

150 次浏览

C# 中的 UInt32.MinValue 字段表示 32 位无符号整数的最小值。语法以下是语法:public const uint MinValue = 0;示例现在让我们来看一个实现 UInt32.MinValue 字段的示例:using System; public class Demo {    public static void Main(){       uint val1 = 23;       uint val2 = 0;       Console.WriteLine("Value1 = "+val1);       Console.WriteLine("Value2 = "+val2);       Console.WriteLine("value1 的哈希码 = "+val1.GetHashCode());       Console.WriteLine("value2 的哈希码 = "+val2.GetHashCode());       Console.WriteLine("它们相等吗?= "+(val1.Equals(val2)));       TypeCode type1 = … 阅读更多

C# 中带示例的 UInt32.MaxValue 字段

AmitDiwan
更新于 2019年11月13日 05:47:09

225 次浏览

C# 中的 UInt32.MaxValue 字段表示 32 位无符号整数的最大值。语法以下是语法:public const uint MaxValue = 4294967295;示例现在让我们来看一个实现 UInt32.MaxValue 字段的示例:using System; public class Demo {    public static void Main(){       uint val1 = 23;       uint val2 = 0;       Console.WriteLine("Value1 = "+val1);       Console.WriteLine("Value2 = "+val2);       Console.WriteLine("value1 的哈希码 = "+val1.GetHashCode());       Console.WriteLine("value2 的哈希码 = "+val2.GetHashCode());       Console.WriteLine("它们相等吗?= "+(val1.Equals(val2)));       TypeCode type1 = … 阅读更多

C# 中带示例的 UInt32.GetTypeCode() 方法

AmitDiwan
更新于 2019年11月8日 06:54:17

70 次浏览

C# 中的 UInt32.GetTypeCode() 方法用于返回 UInt32 值类型的 TypeCode。语法以下是语法:public TypeCode GetTypeCode ();示例现在让我们来看一个实现 UInt32.GetTypeCode() 方法的示例:using System; public class Demo {    public static void Main(){       uint val1 = 55;       uint val2 = 100;       TypeCode type1 = val1.GetTypeCode();       TypeCode type2 = val2.GetTypeCode();       Console.WriteLine("val1 的类型码 = "+type1);       Console.WriteLine("val2 的类型码 = "+type2);    } }输出这将产生以下输出:val1 的类型码 = UInt32 … 阅读更多

C# 中带示例的 Math 类字段

AmitDiwan
更新于 2019年11月8日 06:52:17

94 次浏览

C# 中的 Math 类具有 Math.E 和 Math.PI 字段。让我们来看一下这两个字段的示例:Math.E语法它是自然对数底数,由常数 e 指定。语法如下:public const double E = 2.71828182845905;示例现在让我们来看一个示例:using System; public class Demo{    public static void Main(){       double d = Math.E;       Console.WriteLine("Math.E = " + d);    } }输出这将产生以下输出:Math.E = 2.71828182845905Math.PI Math.PI 字段表示圆的周长与其直径的比率,由常数指定,… 阅读更多

C# 中的 EndsWith() 方法

AmitDiwan
更新于 2019年11月8日 06:49:05

189 次浏览

C# 中的 EndsWith() 方法用于检查当前字符串实例的结尾是否与指定的字符串匹配。语法以下是语法:public bool EndsWith(string str)其中,str 参数是要比较的字符串。示例现在让我们来看一个实现 EndsWith() 方法的示例:using System; public class Demo{    public static void Main(){       bool val;       string str = "demo$";       val = str.EndsWith("$");       Console.WriteLine("返回值 = "+val.ToString());    } }输出这将产生以下输出:返回值 = True示例现在让我们来看… 阅读更多

C# 中的 Decimal.ToString() 方法

AmitDiwan
更新于 2019年11月8日 06:47:29

188 次浏览

C# 中的 Decimal.ToString() 方法用于将此实例的数值转换为其等效的字符串表示形式。语法以下是语法:public override string ToString ();示例现在让我们来看一个实现 Decimal.ToString() 方法的示例:using System; public class Demo{    public static void Main(){       decimal d = 3444.787m;       string str = d.ToString();       Console.WriteLine("字符串 = "+str);    } }输出这将产生以下输出:字符串 = 3444.787示例让我们来看另一个示例:using System; public class Demo{    public static void Main(){       decimal d = 100;       string str = d.ToString();       Console.WriteLine("字符串 = "+str);    } }输出这将产生以下输出:字符串 = 100

C# 中的 Double.ToString 方法

AmitDiwan
更新于 2019年11月7日 07:31:15

161 次浏览

C# 中的 Double.ToString() 方法用于将此实例的数值转换为其等效的字符串表示形式。语法以下是语法:public override string ToString();示例现在让我们来看一个实现 Double.ToString() 方法的示例:using System; public class Demo{    public static void Main(){       double d = 45.7878d;       string str = d.ToString();       Console.WriteLine("String = "+str);    } }输出这将产生以下输出:String = 45.7878示例现在让我们来看另一个示例:using System; public class Demo{    public static void Main(){       double d = ... 阅读更多

C# 中的 Console.Clear 方法

AmitDiwan
更新于 2019年11月7日 07:27:24

浏览量:145

C# 中的 Console.Clear 方法用于清除控制台缓冲区和相应的控制台窗口的显示信息。语法以下是语法:public static void Clear();示例在实现 Console.Clear 方法之前,让我们来看一个示例:using System; public class Demo {    public static void Main(){       Uri newURI1 = new Uri("https://tutorialspoint.com/");       Console.WriteLine("URI = "+newURI1);       Console.WriteLine("String representation = "+newURI1.ToString());       Uri newURI2 = new Uri("https://tutorialspoint.com/jquery.htm#abcd");       Console.WriteLine("URI = "+newURI2);       Console.WriteLine("String representation = "+newURI2.ToString());       if(newURI1.Equals(newURI2))          Console.WriteLine("Both the ... 阅读更多

广告