找到 2628 篇文章 关于 C#
90 次浏览
C# 中的 Decimal.ToInt64() 方法用于将指定的 Decimal 值转换为等效的 64 位带符号整数。语法以下是语法:public static long ToInt64 (decimal val); 上述 Val 是要转换的十进制数。示例让我们来看一个实现 Decimal.ToInt64() 方法的示例:using System; public class Demo { public static void Main(){ Decimal val1 = -567.7989m; Decimal val2 = 456.000m; Console.WriteLine("Decimal 1 = "+val1); Console.WriteLine("Decimal 2 = "+val2); long res1 = Decimal.ToInt64(val1); long res2 = Decimal.ToInt64(val2); ... 阅读更多
55 次浏览
C# 中的 Decimal.ToInt32() 方法用于将指定的 Decimal 值转换为等效的 32 位带符号整数。语法以下是语法:public static int ToInt32 (decimal val); 上述 Val 是要转换的十进制数。示例让我们来看一个实现 Decimal.ToInt32() 方法的示例:using System; public class Demo { public static void Main(){ Decimal val1 = 0.001m; Decimal val2 = 1.000m; Console.WriteLine("Decimal 1 = "+val1); Console.WriteLine("Decimal 2 = "+val2); int res1 = Decimal.ToInt32(val1); int res2 = Decimal.ToInt32(val2); ... 阅读更多
82 次浏览
C# 中的 Char.IsLowSurrogate() 方法指示字符串中指定位置的 Char 对象是否为低代理项。语法以下是语法:public static bool IsLowSurrogate (string str, int index); 上述 str 是一个字符串,而 index 是 str 中要评估的字符的位置。示例让我们来看一个实现 Char.IsLowSurrogate() 方法的示例:using System; public class Demo { public static void Main(){ string str = new String(new char[] { 'k', 'm', 'g', 't', 'j', 'p', '\uDC00' }); bool res = Char.IsLowSurrogate(str, 6); if ... 阅读更多
229 次浏览
C# 中的 Char.IsLower() 方法用于指示指定的 Unicode 字符是否归类为小写字母。语法以下是语法:public static bool IsLower (char ch); 上述参数 ch 是要评估的 Unicode 字符。示例让我们来看一个实现 Char.IsLower() 方法的示例:using System; public class Demo { public static void Main(){ bool res; char val = 'K'; Console.WriteLine("Value = "+val); res = Char.IsLower(val); Console.WriteLine("Is the value a lowercase letter? = "+res); } }输出这将产生... 阅读更多
624 次浏览
C# 中的 Char.IsLetterOrDigit() 方法指示指定的 Unicode 字符是否归类为字母或十进制数字。语法以下是语法:public static bool IsLetterOrDigit (char ch); 上述 ch 是要评估的 Unicode 字符。示例让我们来看一个实现 Char.IsLetterOrDigit() 方法的示例:using System; public class Demo { public static void Main(){ bool res; char val = '1'; Console.WriteLine("Value = "+val); res = Char.IsLetterOrDigit(val); Console.WriteLine("Is the value a letter or digit? = "+res); } }输出这将产生以下... 阅读更多
53 次浏览
C# 中的 MathF.Atanh() 方法返回浮点值的双曲反正切值。语法以下是语法:public static float Atanh (float val);示例让我们来看一个实现 MathF.Atanh() 方法的示例:using System; public class Demo { public static void Main(){ float val1 = 25f; float val2 = 15f; Console.WriteLine("Return value (val1) = "+(MathF.Atanh(val1))); Console.WriteLine("Return value (val2) = "+(MathF.Atanh(val2))); } }输出这将产生以下输出:Return value (val1) = NaN Return value (val2) = NaN示例让我们来看另一个实现 MathF.Atanh() ... 阅读更多
122 次浏览
C# 中的 UInt16.ToString() 方法用于将当前 UInt16 实例的数值转换为其等效的字符串表示形式。语法以下是语法:public override string ToString();示例让我们来看一个实现 UInt16.ToString() 方法的示例:using System; public class Demo { public static void Main(){ ushort val1 = 100; ushort val2 = 80; 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) ... 阅读更多
102 次浏览
C# 中的 UInt16.MinValue 字段表示 16 位无符号整数的最小可能值。语法以下是语法:public const ushort MinValue = 0;示例让我们来看一个实现 UInt16.MinValue 字段的示例:using System; public class Demo { public static void Main(){ ushort val1 = 23; ushort val2 = 0; Console.WriteLine("Value1 = "+val1); Console.WriteLine("Value2 = "+val2); Console.WriteLine("HashCode for value1 = "+val1.GetHashCode()); Console.WriteLine("HashCode for value2 = "+val2.GetHashCode()); Console.WriteLine("Are they equal? = "+(val1.Equals(val2))); TypeCode type1 ... 阅读更多
248 次浏览
C# 中的 MathF.Sign() 方法返回一个整数,指定数字的符号。语法以下是语法:public static int Sign (float val); 上述 Val 是要计算其符号的浮点数。如果 Val 为零,则返回值为 0。如果值为负,则为 -1;如果值大于零,则为 1。示例让我们来看一个实现 MathF.Sign() 方法的示例:using System; public class Demo { public static void Main(){ float val1 = 10.23898f; float val2 = -20.878788f; Console.WriteLine("MathF.Sign(val1) = ... 阅读更多
2K+ 次浏览
C# 中的 MathF.Round() 方法用于将值舍入到最接近的整数或特定的小数位数。语法以下是语法:public static float Round (float x); public static float Round (float x, int digits); public static float Round (float x, int digits, MidpointRounding mode); public static float Round (float x, MidpointRounding mode);示例让我们来看一个实现 MathF.Round() 方法的示例:using System; public class Demo { public static void Main(){ float val1 = 15.20f; float val2 = 3.10f; Console.WriteLine("Rounded (val1) = "+MathF.Round(val1)); ... 阅读更多