找到 2628 篇文章,关于 C#
浏览量 183 次
C# 中的 MathF.Pow() 方法用于计算一个数的另一个数次幂。语法以下是语法:public static float Pow (float val1, float val2);其中,val1 是要进行幂运算的浮点数。val2 参数是幂或指数。示例让我们来看一个实现 MathF.Pow() 方法的示例:using System; public class Demo { public static void Main(){ float val1 = 5.00f; float val2 = 3.00f; Console.WriteLine("MathF.Pow() = "+MathF.Pow(val1, val2)); } }输出这将产生以下输出:MathF.Pow() = 125示例让我们…… 阅读更多
浏览量 161 次
要在 C# 中更改控制台的 CursorSize,请使用 C# 中的 Console.CursorSize 属性。示例让我们来看一个示例:using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLine("Background color changed = "+Console.BackgroundColor); Console.ForegroundColor = ConsoleColor.Yellow; Console.WriteLine("Foreground color changed = "+Console.ForegroundColor); Console.CursorSize = 1; Console.WriteLine("CursorSize = "+Console.CursorSize); } }输出这将产生以下输出:
浏览量 254 次
要在 C# 中更改控制台的 CursorLeft,请使用 Console.CursorLeft 属性。示例让我们来看一个示例:using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLine("Background color changed = "+Console.BackgroundColor); Console.ForegroundColor = ConsoleColor.Yellow; Console.WriteLine("Foreground color changed = "+Console.ForegroundColor); Console.CursorLeft = 30; Console.Write("CursorLeft position: "+Console.CursorLeft); } }输出这将产生以下输出:
浏览量 9K+
要更改文本的前景色,请在 C# 中使用 Console.ForegroundColor 属性。示例让我们来看一个示例:using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLine("Background color changed = "+Console.BackgroundColor); Console.ForegroundColor = ConsoleColor.Yellow; Console.WriteLine("Foreground color changed = "+Console.ForegroundColor); } }输出这将产生以下输出:
浏览量 133 次
要更改控制台的 BufferWidth,请使用 Console.BufferWidth 属性。示例让我们来看一个示例:using System; class Demo { public static void Main (string[] args){ Console.BufferHeight = 200; Console.WriteLine("Buffer Height = "+Console.BufferHeight); Console.BufferHeight = 250; Console.WriteLine("Buffer Width = "+Console.BufferWidth); } }输出这将产生以下输出:Buffer Height = 200 Buffer Width = 200
浏览量 2K+
C# 中的 Char.IsLetter() 方法用于指示指定的 Unicode 字符是否被归类为 Unicode 字母。语法以下是语法:public static bool IsLetter (char ch);其中,参数 ch 是要评估的 Unicode 字符。示例让我们来看一个实现 Char.IsLetter() 方法的示例:using System; public class Demo { public static void Main(){ bool res; char val = 'K'; Console.WriteLine("Value = "+val); res = Char.IsLetter(val); Console.WriteLine("Is the value a letter? = "+res); } }输出这将产生以下…… 阅读更多
浏览量 115 次
C# 中的 Char.IsHighSurrogate() 方法指示字符串中指定位置的 Char 对象是否为高代理项。语法以下是语法:public static bool IsHighSurrogate (string str, int index);其中,str 是一个字符串,而 index 是要评估的字符在 str 中的位置。示例让我们来看一个实现 Char.IsHighSurrogate() 方法的示例:using System; public class Demo { public static void Main(){ string str = new String(new char[] { 'k', 'm', 'g', 't', '\uD800' }); bool res = Char.IsHighSurrogate(str, 4); if (res) ... 阅读更多
浏览量 2K+
C# 中的 Char.IsDigit() 方法指示指定的 Unicode 字符是否被归类为十进制数字。语法以下是语法:public static bool IsDigit (char ch);其中,参数 ch 是要评估的 Unicode 字符。示例让我们来看一个实现 Char.IsDigit() 方法的示例:using System; public class Demo { public static void Main(){ bool res; char val = 'g'; Console.WriteLine("Value = "+val); res = Char.IsDigit(val); Console.WriteLine("Is the value a digit? = "+res); } }输出这将产生以下输出:Value = ... 阅读更多
浏览量 59 次
C# 中的 MathF.Atan() 方法用于返回正切值为给定浮点值参数的角度。语法以下是语法:public static float Atan (float val);其中,Val 是浮点值。示例让我们来看一个实现 MathF.Atan() 方法的示例:using System; public class Demo { public static void Main(){ float val1 = 1.2f; float val2 = 45.5f; Console.WriteLine("Angle (val1) = "+(MathF.Atan(val1))); Console.WriteLine("Angle (val2) = "+(MathF.Atan(val2))); } }输出这将产生以下输出:Angle (val1) = 0.876058 Angle (val2) = 1.548822示例让我们…… 阅读更多
浏览量 69 次
C# 中的 MathF.Asinh() 方法用于返回浮点值的双曲反正弦。语法以下是语法:public static float Asinh (float val);示例让我们来看一个实现 MathF.Asinh() 方法的示例:using System; public class Demo { public static void Main(){ float val1 = 1.2f; float val2 = 45.5f; Console.WriteLine("Angle (val1) = "+(MathF.Asinh(val1))); Console.WriteLine("Angle (val2) = "+(MathF.Asinh(val2))); } }输出这将产生以下输出:Angle (val1) = 1.015973 Angle (val2) = 4.51098示例让我们来看另一个实现 MathF.Asinh() 方法的示例…… 阅读更多