摘要: public class BackCard { public string UserName { get; set; } public string id { get; set; } public void CunQian() { } public void Overdraft() { } } // 阅读全文
posted @ 2021-11-19 16:33 vba是最好的语言 阅读(35) 评论(0) 推荐(0) 编辑
摘要: public TypeCode GetTypeCode() { return TypeCode.String; } 阅读全文
posted @ 2021-11-19 14:59 vba是最好的语言 阅读(25) 评论(0) 推荐(0) 编辑
摘要: // Determines whether two Strings match. [Pure] public static bool Equals(String a, String b) { if ((Object)a==(Object)b) { return true; } if ((Object 阅读全文
posted @ 2021-11-19 14:36 vba是最好的语言 阅读(26) 评论(0) 推荐(0) 编辑
摘要: // Determines whether a specified string is a suffix of the the current instance. // // The case-sensitive and culture-sensitive option is set by opti 阅读全文
posted @ 2021-11-19 14:35 vba是最好的语言 阅读(74) 评论(0) 推荐(0) 编辑
摘要: [ComVisible(true)] public enum TypeCode { Empty = 0, Object = 1, DBNull = 2, Boolean = 3, Char = 4, SByte = 5, Byte = 6, Int16 = 7, UInt16 = 8, Int32 阅读全文
posted @ 2021-11-19 14:29 vba是最好的语言 阅读(220) 评论(0) 推荐(0) 编辑
摘要: [Pure] public bool Contains( string value ) { return ( IndexOf(value, StringComparison.Ordinal) >=0 ); } [Pure] [System.Security.SecuritySafeCritical] 阅读全文
posted @ 2021-11-19 14:28 vba是最好的语言 阅读(199) 评论(0) 推荐(0) 编辑
摘要: [Pure] public int CompareTo(Object value) { if (value == null) { return 1; } if (!(value is String)) { throw new ArgumentException(Environment.GetReso 阅读全文
posted @ 2021-11-19 14:08 vba是最好的语言 阅读(56) 评论(0) 推荐(0) 编辑
摘要: // Method required for the ICloneable interface.IClonable接口所需的方法。 // There's no point in cloning a string since they're immutable, so we simply return 阅读全文
posted @ 2021-11-19 14:01 vba是最好的语言 阅读(31) 评论(0) 推荐(0) 编辑
摘要: [Pure] public static bool IsNullOrWhiteSpace(String value) { if (value == null) return true; for(int i = 0; i < value.Length; i++) { if(!Char.IsWhiteS 阅读全文
posted @ 2021-11-19 14:00 vba是最好的语言 阅读(22) 评论(0) 推荐(0) 编辑
摘要: [Pure] public static bool IsNullOrEmpty(String value) { return (value == null || value.Length == 0); } 阅读全文
posted @ 2021-11-19 13:59 vba是最好的语言 阅读(29) 评论(0) 推荐(0) 编辑
摘要: C# System.String.Intern 方法 - CSharp 参考教程 (csref.cn) 阅读全文
posted @ 2021-11-19 13:56 vba是最好的语言 阅读(24) 评论(0) 推荐(0) 编辑
摘要: [System.Security.SecuritySafeCritical] // auto-generated public static String Intern(String str) { if (str==null) { throw new ArgumentNullException("s 阅读全文
posted @ 2021-11-19 13:55 vba是最好的语言 阅读(31) 评论(0) 推荐(0) 编辑
摘要: public static String Format(String format, Object arg0) { Contract.Ensures(Contract.Result<String>() != null); return FormatHelper(null, format, new P 阅读全文
posted @ 2021-11-19 13:45 vba是最好的语言 阅读(96) 评论(0) 推荐(0) 编辑
摘要: [System.Security.SecuritySafeCritical] // auto-generated unsafe public static String Copy (String str) { if (str==null) { throw new ArgumentNullExcept 阅读全文
posted @ 2021-11-19 13:33 vba是最好的语言 阅读(43) 评论(0) 推荐(0) 编辑
摘要: public static String Concat(params Object[] args) { if (args==null) { throw new ArgumentNullException("args"); } Contract.Ensures(Contract.Result<Stri 阅读全文
posted @ 2021-11-19 13:11 vba是最好的语言 阅读(142) 评论(0) 推荐(0) 编辑
摘要: // Provides a culture-correct string comparison. strA is compared to strB // to determine whether it is lexicographically less, equal, or greater, and 阅读全文
posted @ 2021-11-19 11:12 vba是最好的语言 阅读(53) 评论(0) 推荐(0) 编辑
摘要: [Pure] [System.Security.SecuritySafeCritical] // auto-generated public static bool Equals(String a, String b, StringComparison comparisonType) { if (c 阅读全文
posted @ 2021-11-19 11:05 vba是最好的语言 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 地址:深入Dapper.NET源码 (文长) - dreamw - 博客园 (cnblogs.com) 阅读全文
posted @ 2021-11-19 10:38 vba是最好的语言 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 写了太多业务代码,完全是为了实现某一个功能去写,这样再怎么写下去也都是没有很多进步空间的,很多人把原因归咎到环境。例如公司环境、几十年还在用老框架、一点新技术不用。。。net framework版本还停留在4.0,4.5。你连新语法都不敢写。我也是这样的。。 “我们无非是希望在编程的时候,把大部分的 阅读全文
posted @ 2021-11-19 10:30 vba是最好的语言 阅读(19) 评论(0) 推荐(0) 编辑