找到 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() 方法的示例… 阅读更多