找到 2628 篇文章 适用于 C#

C# 中的 Console.KeyAvailable() 属性

AmitDiwan
更新于 2019 年 11 月 14 日 05:46:44

383 次查看

C# 中的 Console.KeyAvailable() 属性用于获取一个值,该值指示输入流中是否可用按键。语法语法如下:public static bool KeyAvailable { get; }示例现在让我们来看一个在 C# 中实现 Console.KeyAvailable() 属性的示例:using System; using System.Threading; class Demo {    public static void Main (string[] args) {       ConsoleKeyInfo cs = new ConsoleKeyInfo();       do {          Console.WriteLine("按下任意键显示;" + "按下 'Q' 键退出。");          while (Console.KeyAvailable == false)Thread.Sleep(100);       ... 阅读更多

C# 中的 Console 类

AmitDiwan
更新于 2019 年 11 月 14 日 05:41:46

2K+ 次查看

C# 中的 Console 类用于表示控制台应用程序的标准输入、输出和错误流。让我们看看 C# 中 Console 类属性的一些示例:Console.CursorLeft 属性要更改 C# 中 Console 的 CursorLeft,请使用 Console.CursorLeft 属性。示例让我们来看一个示例:using System; class Demo {    public static void Main (string[] args) {       Console.BackgroundColor = ConsoleColor.Blue;       Console.WriteLine("背景颜色已更改 =" + Console.BackgroundColor);       Console.ForegroundColor = ConsoleColor.Yellow;       Console.WriteLine("前景色已更改 =" + Console.ForegroundColor);       Console.CursorLeft = 30;       Console.Write("CursorLeft 位置:" + Console.CursorLeft); ... 阅读更多

C# 中的 Decimal 结构

AmitDiwan
更新于 2019 年 11 月 14 日 05:37:27

339 次查看

C# 中的 Decimal 结构表示十进制浮点数。Decimal 值类型表示从正 79,228,162,514,264,337,593,543,950,335 到负 79,228,162,514,264,337,593,543,950,335 的十进制数。Decimal 的默认值为 0。现在让我们看看 Decimal 结构中一些方法的示例:Decimal.Add()C# 中的 Decimal.Add() 方法用于添加两个指定的 Decimal 值。语法以下是语法:public static decimal Add (decimal val1, decimal val2);在上面,va1 是要添加的第一个十进制数,而 val2 是要添加的第二个十进制数。... 阅读更多

C# 中的 UInt64 结构

AmitDiwan
更新于 2019 年 11 月 14 日 05:34:04

355 次查看

UInt64 结构表示 64 位无符号整数。UInt64 值类型表示无符号整数,其值范围从 0 到 18,446,744,073,709,551,615。现在让我们看看 UInt64 结构方法的一些示例:UInt64.CompareTo()C# 中的 UInt64.CompareTo() 方法用于将当前实例与指定的 object 或 UInt64 进行比较,并返回其相对值的指示。语法以下是语法:public int CompareTo (object val); public int CompareTo (ulong val;在上面,第一个语法的值为要比较的对象。第二个语法的值为要比较的无符号整数。返回值... 阅读更多

C# 中的 Uri.IsWellFormedOriginalString() 方法

AmitDiwan
更新于 2019 年 11 月 14 日 05:26:59

38 次查看

C# 中的 Uri.IsWellFormedOriginalString() 方法指示用于构造此 Uri 的字符串是否格式良好,并且不需要进一步转义。语法以下是语法:public bool IsWellFormedOriginalString ();示例现在让我们来看一个实现 Uri.IsWellFormedOriginalString() 方法的示例:using System; public class Demo {    public static void Main(){       Uri newURI1 = new Uri("https://tutorialspoint.com/index.htm");       Console.WriteLine("URI = "+newURI1);       Uri newURI2 = new Uri("https://www.qries.com/");       Console.WriteLine("URI = "+newURI2);       if(newURI1.Equals(newURI2))          Console.WriteLine("两个 URI 相等!");       else       ... 阅读更多

C# 中的 Uri.IsHexEncoding() 方法

AmitDiwan
更新于 2019 年 11 月 14 日 05:24:17

36 次查看

C# 中的 Uri.IsHexEncoding() 方法确定字符串中的字符是否为十六进制编码。语法以下是语法:public static bool IsHexEncoding (string pattern, int index);在上面,pattern 参数是要检查的字符串,而 index 是要在其中检查十六进制编码的 pattern 中的位置。示例现在让我们来看一个实现 Uri.IsHexEncoding() 方法的示例:using System; public class Demo {    public static void Main(){       string pattern = "%50";       bool res = Uri.IsHexEncoding(pattern, 0);       if (res)          Console.WriteLine("有效:十六进制编码");       else   ... 阅读更多

C# 中的 Uri.IsBaseOf(Uri) 方法

AmitDiwan
更新于 2019 年 11 月 13 日 07:08:36

118 次查看

C# 中的 Uri.IsBaseOf() 方法用于确定当前 Uri 实例是否是指定 Uri 实例的基类。语法以下是语法:public bool IsBaseOf (Uri uri);在上面,参数 Uri 是要测试的指定 Uri 实例。示例现在让我们来看一个实现 Uri.IsBaseOf() 方法的示例:using System; public class Demo {    public static void Main(){       Uri newURI1 = new Uri("https://tutorialspoint.com/index.htm");       Console.WriteLine("URI = "+newURI1);       Uri newURI2 = new Uri("https://tutorialspoint.com/");       Console.WriteLine("URI = "+newURI2);       if(newURI1.Equals(newURI2))          Console.WriteLine("两个 URI ... 阅读更多

带示例的 C# 中的 MathF.Ceiling() 方法

AmitDiwan
更新于 2019 年 11 月 13 日 07:06:30

294 次查看

C# 中的 MathF.Ceiling() 方法用于查找大于或等于参数中浮点值的最小整数。语法以下是语法:public static float Ceiling (float val);在上面,Val 是浮点值。示例现在让我们来看一个实现 MathF.Ceiling() 方法的示例:using System; class Demo {    public static void Main(){       float val1 = 12.67f;       float val2 = 30.13f;       Console.WriteLine("Ceiling (value1) = "+MathF.Ceiling(val1));       Console.WriteLine("Ceiling (value2) = "+MathF.Ceiling(val2));    } }输出这将产生以下输出:Ceiling (value1) = 13 Ceiling (value2) = ... 阅读更多

带示例的 C# 中的 MathF.Cbrt() 方法

AmitDiwan
更新于 2019 年 11 月 13 日 07:05:14

67 次查看

C# 中的 MathF.Cbrt() 方法用于返回浮点值的立方根。语法以下是语法:public static float Cbrt (float val);示例现在让我们来看一个实现 MathF.Cbrt() 方法的示例:using System; class Demo {    public static void Main(){       float val1 = 64f;       Console.WriteLine("立方根 = "+MathF.Cbrt(val1));    } }输出这将产生以下输出:立方根 = 4示例现在让我们来看另一个实现 MathF.Cbrt() 方法的示例:using System; class Demo {    public static void Main(){       float val1 = 12.67f;     ... 阅读更多

C# 中的 Char.IsNumber() 方法

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

278 次查看

C# 中的 Char.IsNumber() 方法用于指示指定的 Unicode 字符是否归类为数字。语法以下是语法:public static bool IsNumber (char ch);在上面,参数 ch 是要评估的 Unicode 字符。示例现在让我们来看一个实现 Char.IsNumber() 方法的示例:using System; public class Demo {    public static void Main(){       bool res;       char val = '2';       Console.WriteLine("值 = "+val);       res = Char.IsNumber(val);       Console.WriteLine("该值是数字吗?= "+res);    } }输出这将产生以下输出... 阅读更多

广告