csharp 扩展方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 扩展方法相关的知识,希望对你有一定的参考价值。

public static string ToLowerSafe(this string input)
{
    return String.IsNullOrEmpty(input) ? input : input.ToLower();
}
public static int Int(this string stringValue, int defaultValue = 0)
{
    if (stringValue == null) return defaultValue;
    int integer = Int32.TryParse(stringValue, out integer) ? integer : defaultValue;
    return integer;
}

以上是关于csharp 扩展方法的主要内容,如果未能解决你的问题,请参考以下文章

csharp JSON.NET:JObject扩展方法

csharp 数组扩展方法

csharp 扩展方法

csharp 扩展方法

csharp 扩展方法

csharp 很少使用LINQ扩展方法