找到 2628 篇文章 关于 C#

获取 C# 中 StringCollection 中字符串的数量

AmitDiwan
更新于 2019年12月5日 12:18:59

53 次浏览

要获取 StringCollection 中字符串的数量,代码如下所示 - 示例 在线演示using System; using System.Collections.Specialized; public class Demo {    public static void Main() {       StringCollection strCol = new StringCollection();       String[] strArr = new String[] { "A", "B", "C", "D", "E", "F", "G", "H" };       Console.WriteLine("StringCollection 元素...");       foreach (string str in strArr) {          Console.WriteLine(str);       }       strCol.AddRange(strArr);       Console.WriteLine("第 5 个索引处的元素 = "+strCol[5]);       Console.WriteLine("StringCollection 中字符串的数量 = " ... 阅读更多

获取或设置 C# 中 StringDictionary 中与指定键关联的值

AmitDiwan
更新于 2019年12月5日 12:14:47

66 次浏览

要获取或设置与 StringDictionary 中指定键关联的值,代码如下所示 - 示例 在线演示using System; using System.Collections.Specialized; public class Demo {    public static void Main() {       StringDictionary strDict = new StringDictionary ();       strDict.Add("A", "Books");       strDict.Add("B", "Electronics");       strDict.Add("C", "Appliances");       strDict.Add("D", "Pet Supplies");       strDict.Add("E", "Clothing");       strDict.Add("F", "Footwear");       Console.WriteLine("与键 D 关联的值 = "+strDict["D"]);       Console.WriteLine("与键 F 关联的值 = "+strDict["F"]);    } }输出这将产生以下输出 ... 阅读更多

从 C# 中 StringCollection 的指定索引中移除元素

AmitDiwan
更新于 2019年12月5日 12:10:53

87 次浏览

要从 StringCollection 的指定索引中移除元素,代码如下所示 - 示例 在线演示using System; using System.Collections.Specialized; public class Demo {    public static void Main() {       StringCollection stringCol = new StringCollection();       String[] arr = new String[] { "100", "200", "300", "400", "500" };       Console.WriteLine("数组元素...");       foreach (string res in arr) {          Console.WriteLine(res);       }       stringCol.AddRange(arr);         Console.WriteLine("元素总数 = "+stringCol.Count);       stringCol.RemoveAt(3);       Console.WriteLine("元素总数 ... 阅读更多

如何在 C# 中获取元组的第七个元素?

AmitDiwan
更新于 2019年12月5日 12:06:35

64 次浏览

要获取元组的第七个元素,代码如下所示 - 示例 在线演示using System; public class Demo {    public static void Main(String[] args) {       var tuple1 = Tuple.Create(75, 200, 500, 700, 100, 1200, 1500);       var tuple2 = Tuple.Create(75, 200, 500, 700, 100, 1200, 1500);       Console.WriteLine("Tuple1 是否等于 Tuple2? = "+tuple1.Equals(tuple2));       Console.WriteLine("Tuple1 的哈希码 = "+tuple1.GetHashCode());       Console.WriteLine("Tuple2 的哈希码 = "+tuple2.GetHashCode());       Console.WriteLine("Tuple1 第 1 项 = "+tuple1.Item1);       Console.WriteLine("Tuple2 第 1 项 = "+tuple2.Item1);       Console.WriteLine("Tuple1 第 2 项 ... 阅读更多

从 C# 中的哈希表中移除所有元素

AmitDiwan
更新于 2019年12月5日 12:03:24

150 次浏览

要从哈希表中移除所有元素,代码如下所示 - 示例 在线演示using System; using System.Collections; public class Demo {    public static void Main() {       Hashtable hash = new Hashtable(10);       hash.Add("1", "A");       hash.Add("2", "B");       hash.Add("3", "C");       hash.Add("4", "D");       hash.Add("5", "E");       hash.Add("6", "F");       hash.Add("7", "G");       hash.Add("8", "H");       hash.Add("9", "I");       hash.Add("10", "J");       Console.WriteLine("哈希表键值对...");       foreach(DictionaryEntry entry in hash) ... 阅读更多

从 C# 中的集合中移除所有元素

AmitDiwan
更新于 2019年12月5日 11:58:52

331 次浏览

要从集合中移除所有元素,代码如下所示 - 示例 在线演示using System; using System.Collections.ObjectModel; public class Demo {    public static void Main() {       Collection col = new Collection();       col.Add(10);       col.Add(20);       col.Add(30);       col.Add(40);       col.Add(50);       col.Add(60);       col.Add(70);       col.Add(80);       Console.WriteLine("集合中的元素...");       foreach(int val in col) {          Console.WriteLine(val);       }       Console.WriteLine("集合是否包含元素 ... 阅读更多

检查 C# 中指定的 Unicode 字符是否为标点符号

AmitDiwan
更新于 2019年12月5日 11:53:57

212 次浏览

要检查指定的 Unicode 字符是否为标点符号,代码如下所示 - 示例 在线演示using System; public class Demo {    public static void Main() {       bool res;       char val = 'q';       Console.WriteLine("值 = "+val);       res = Char.IsPunctuation(val);       Console.WriteLine("该值是否为标点符号? = "+res);    } }输出这将产生以下输出 -值 = q 该值是否为标点符号? = False示例让我们看另一个示例 - 在线演示using System; public class Demo {    public static void Main() {     ... 阅读更多

获取 C# 中当前 Int64 实例的哈希码

AmitDiwan
更新于 2019年12月5日 11:51:00

107 次浏览

要获取当前 Int64 实例的哈希码,代码如下所示 - 示例 在线演示using System; public class Demo {    public static void Main() {       long val1 = 8768768768;       long val2 = 7889765555;       Console.WriteLine("Value1 = "+val1);       Console.WriteLine("Value2 = "+val2);       Console.WriteLine("它们相等吗? = "+val1.Equals(val2));       Console.WriteLine("Value1 (哈希码) = "+val1.GetHashCode());       Console.WriteLine("Value2 (哈希码) = "+val2.GetHashCode());    } }输出这将产生以下输出 -Value1 = 8768768768 Value2 = 7889765555 它们相等吗? = False Value1 (哈希码) = 178834178 Value2 (哈希码) = -700169038示例让我们看另一个示例 - 在线演示using System; public class Demo { ... 阅读更多

比较此实例是否等于 C# 中指定的对象或 Int64

AmitDiwan
更新于 2019年12月5日 11:45:31

59 次浏览

要比较此实例是否等于指定的对象或 Int64,代码如下所示:示例 在线演示使用 System; public class Demo { public static void Main() { long val1 = 150; long val2 = 240; Console.WriteLine("Value1 = "+val1); Console.WriteLine("Value2 = "+val2); Console.WriteLine("Are they equal? = "+val1.Equals(val2)); } }输出这将产生以下输出:Value1 = 150 Value2 = 240 Are they equal? = False示例让我们来看另一个示例: 在线演示使用 System; public class Demo { public static void Main() { long val1 = ... 阅读更多

检查 Unicode 字符在 C# 中是否为小写字母

AmitDiwan
更新于 2019年12月5日 11:30:32

148 次浏览

要检查 Unicode 字符是否为小写字母,代码如下所示:示例 在线演示使用 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); } }输出这将产生以下输出:Value = K Is the value a lowercase letter? = False示例让我们来看另一个示例: 在线演示使用 System; public class Demo { public static void Main() { ... 阅读更多

广告