找到 2628 篇文章 关于 C#
189 次浏览
C# 中的 SortedDictionary.Keys 属性用于获取包含 SortedDictionary 中键的集合。语法语法如下:public System.Collections.Generic.SortedDictionary.KeyCollection Keys { get; }示例让我们来看一个例子:实时演示using System; using System.Collections; using System.Collections.Generic; public class Demo { public static void Main(){ SortedDictionary sortedDict = new SortedDictionary(); sortedDict.Add(1, "SUV"); sortedDict.Add(2, "MUV"); sortedDict.Add(3, "Utility Vehicle"); sortedDict.Add(4, "AUV"); sortedDict.Add(5, "Hatchback"); sortedDict.Add(6, "Convertible"); Console.WriteLine("SortedDictionary 键值对..."); IDictionaryEnumerator demoEnum = sortedDict.GetEnumerator(); ... 阅读更多
339 次浏览
C# 中的 SByte.ToString() 方法用于将此实例的数值转换为其等效的字符串表示形式。语法语法如下:public override string ToString ();示例让我们来看一个例子:实时演示using System; public class Demo { public static void Main(){ sbyte s1 = 10; sbyte s2 = 100; Console.WriteLine("S1 的值 = "+s1); Console.WriteLine("S2 的值 = "+s2); int res = s1.CompareTo(s2); if (res > 0) Console.WriteLine("s1 > s2"); ... 阅读更多
336 次浏览
C# 中的 BitConverter.ToInt32() 方法用于返回从字节数组中指定位置的四个字节转换而来的 32 位有符号整数。语法语法如下:public static int ToInt32 (byte[] val, int begnIndex);其中,val 是字节数组,begnIndex 是 val 中的起始位置。示例让我们来看一个例子:实时演示using System; public class Demo { public static void Main(){ byte[] arr = { 10, 20, 30, 40, 50}; Console.WriteLine("字节数组 = {0} ", BitConverter.ToString(arr)); for (int i = 1; i < arr.Length - ... 阅读更多
150 次浏览
C# 中的 BitConverter.ToDouble() 方法用于返回从字节数组中指定位置的八个字节转换而来的双精度浮点数。同步语法如下:public static double ToDouble (byte[] val, int begnIndex);其中,val 是字节数组,begnIndex 是 val 中的起始位置。示例让我们来看一个例子:实时演示using System; public class Demo { public static void Main(){ byte[] arr = { 0, 2, 5, 10, 20, 26, 34, 42, 50, 58, 66, 74, 82, 89, 97, 107, 115}; Console.WriteLine("字节数组 = {0} ", BitConverter.ToString(arr)); ... 阅读更多
188 次浏览
C# 中的 BitConverter.ToInt16() 方法用于返回从字节数组中指定位置的两个字节转换而来的 16 位有符号整数。语法语法如下:public static short ToInt16 (byte[] val, int begnIndex);其中,val 是字节数组,begnIndex 是 val 中的起始位置。示例让我们来看一个例子:实时演示using System; public class Demo { public static void Main(){ byte[] arr = { 0, 0, 7, 10, 18, 20, 25, 26, 32}; Console.WriteLine("字节数组 = {0} ", BitConverter.ToString(arr)); for (int i = 1; ... 阅读更多
65 次浏览
C# 中的 Double.GetHashCode() 方法用于返回此实例的哈希代码。语法语法如下:public override int GetHashCode ();示例让我们来看一个例子:实时演示using System; public class Demo { public static void Main(){ double d1 = 150d; object ob1 = 1/2; Console.WriteLine("Double1 值 = "+d1); Console.WriteLine("对象值 = "+ob1); Console.WriteLine("两个值是否相等?= "+d1.Equals(ob1)); Console.WriteLine("Double1 值的哈希代码 = {0}", d1.GetHashCode()); } }输出这将产生以下输出 ... 阅读更多
68 次浏览
C# 中的 Single.ToString() 方法用于将此实例的数值转换为其等效的字符串表示形式。语法语法如下:public override string ToString ();示例让我们来看一个例子:实时演示using System; public class Demo { public static void Main(){ float f1 = 10.0f/0.0f; float f2 = -3.0f; Console.WriteLine("Value1(字符串表示)= "+f1.ToString()); Console.WriteLine("Value1 的哈希代码 = "+f1.GetHashCode()); Console.WriteLine("Value1 的类型代码 = "+f1.GetTypeCode()); Console.WriteLine("Value1 的值是正无穷大还是负无穷大?= "+Single.IsInfinity(f1)); ... 阅读更多
66 次浏览
C# 中的 SortedDictionary.Item[] 属性用于获取或设置与指定键关联的值。语法语法如下:public TValue this[TKey k] { get; set; }其中,值 k 是要获取或设置的值的键。示例让我们来看一个例子:实时演示using System; using System.Collections; using System.Collections.Generic; public class Demo { public static void Main(){ SortedDictionary sortedDict = new SortedDictionary(); sortedDict.Add(1, "One"); sortedDict.Add(2, "Two"); sortedDict.Add(3, "Three"); sortedDict.Add(4, "Four"); sortedDict.Add(5, "Five"); ... 阅读更多
75 次浏览
C# 中的 SortedDictionary.Count 属性用于获取 SortedDictionary 中包含的键/值对的数量。语法语法如下:public int Count { get; }示例让我们来看一个例子:实时演示using System; using System.Collections; using System.Collections.Generic; public class Demo { public static void Main(){ SortedDictionary sortedDict = new SortedDictionary(); sortedDict.Add(100, "Mobile"); sortedDict.Add(200, "Laptop"); sortedDict.Add(300, "Desktop"); sortedDict.Add(400, "Speakers"); sortedDict.Add(500, "Headphone"); sortedDict.Add(600, "Earphone"); Console.WriteLine("SortedDictionary 键值对..."); IDictionaryEnumerator demoEnum = sortedDict.GetEnumerator(); ... 阅读更多