摘要: 提问 数组能改变大小吗 回答 能 using System; public class SamplesArray { public static void Main() { // Create and initialize a new string array. String[] myArr = { 阅读全文
posted @ 2023-09-28 16:07 喜爱糖葫芦 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 提问 如何获取枚举名称 回答 using System; public class GetNameTest { enum Colors { Red, Green, Blue, Yellow }; enum Styles { Plaid, Striped, Tartan, Corduroy }; pu 阅读全文
posted @ 2023-09-28 16:04 喜爱糖葫芦 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 提问 如何优雅地类型转换和非空判断 回答 使用模式匹配 😥 BAD Bytes2ValueAttribute attr = (Bytes2ValueAttribute) Attribute.GetCustomAttribute(p, typeof(Bytes2ValueAttribute)); i 阅读全文
posted @ 2023-09-28 09:28 喜爱糖葫芦 阅读(14) 评论(0) 推荐(0) 编辑