找到 2628 篇文章 关于 C#

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

AmitDiwan
更新于 2019-12-05 12:18:59

53 次查看

要获取 StringCollection 中字符串的数量,代码如下:示例 实时演示使用 System;使用 System.Collections.Specialized;公共类演示 {    公共静态无效主() {       StringCollection strCol = new StringCollection();       String[] strArr = new String[] { "A", "B", "C", "D", "E", "F", "G", "H" };       Console.WriteLine("StringCollection 元素...");       针对(字符串 str in strArr) {          Console.WriteLine(str);       }       strCol.AddRange(strArr);       Console.WriteLine("第 5 个索引处的元素 = "+strCol[5]);       Console.WriteLine("StringCollection 中字符串的数量 = " ... 阅读更多

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

AmitDiwan
更新于 2019-12-05 12:14:47

66 次查看

要获取或设置与 C# 中 StringDictionary 中指定键关联的值,代码如下:示例 实时演示使用 System;使用 System.Collections.Specialized;公共类演示 {    公共静态无效主() {       StringDictionary strDict = new StringDictionary ();       strDict.Add("A", "书籍");       strDict.Add("B", "电子产品");       strDict.Add("C", "家电");       strDict.Add("D", "宠物用品");       strDict.Add("E", "服装");       strDict.Add("F", "鞋类");       Console.WriteLine("与键 D 关联的值 = "+strDict["D"]);       Console.WriteLine("与键 F 关联的值 = "+strDict["F"]);    } }输出这将产生以下输出 ... 阅读更多

从 C# 中 StringCollection 的指定索引中删除

AmitDiwan
更新于 2019-12-05 12:10:53

87 次查看

要从 StringCollection 的指定索引中删除,代码如下:示例 实时演示使用 System;使用 System.Collections.Specialized;公共类演示 {    公共静态无效主() {       StringCollection stringCol = new StringCollection();       String[] arr = new String[] { "100", "200", "300", "400", "500" };       Console.WriteLine("数组元素...");       针对(字符串 res in arr) {          Console.WriteLine(res);       }       stringCol.AddRange(arr);         Console.WriteLine("元素总数 = "+stringCol.Count);       stringCol.RemoveAt(3);       Console.WriteLine("元素总数 ... 阅读更多

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

AmitDiwan
更新于 2019-12-05 12:06:35

64 次查看

要获取元组的第七个元素,代码如下:示例 实时演示使用 System;公共类演示 {    公共静态无效主(字符串[] 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-05 12:03:24

150 次查看

要从哈希表中删除所有元素,代码如下:示例 实时演示使用 System;使用 System.Collections;公共类演示 {    公共静态无效主() {       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("哈希表键值对...");       针对(DictionaryEntry entry in hash) ... 阅读更多

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

AmitDiwan
更新于 2019-12-05 11:58:52

331 次查看

要从集合中删除所有元素,代码如下:示例 实时演示使用 System;使用 System.Collections.ObjectModel;公共类演示 {    公共静态无效主() {       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("集合中的元素...");       针对(int val in col) {          Console.WriteLine(val);       }       Console.WriteLine("集合是否包含元素 ... 阅读更多

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

AmitDiwan
更新于 2019-12-05 11:53:57

212 次查看

要检查指定的 Unicode 字符是否为标点符号,代码如下:示例 实时演示使用 System;公共类演示 {    公共静态无效主() {       布尔型 res;       字符 val = 'q';       Console.WriteLine("值 = "+val);       res = Char.IsPunctuation(val);       Console.WriteLine("该值是否为标点符号? = "+res);    } }输出这将产生以下输出:值 = q 该值是否为标点符号? = False示例让我们看另一个示例: 实时演示使用 System;公共类演示 {    公共静态无效主() {     ... 阅读更多

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

AmitDiwan
更新于 2019-12-05 11:51:00

107 次查看

要获取当前 Int64 实例的哈希码,代码如下:示例 实时演示使用 System;公共类演示 {    公共静态无效主() {       长 val1 = 8768768768;       长 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示例让我们看另一个示例: 实时演示使用 System;公共类 ... 阅读更多

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

AmitDiwan
更新于 2019-12-05 11:45:31

59 次查看

要比较此实例是否等于指定的 object 或 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-05 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() {   ... 阅读更多

广告