C# 扩展方法的使用

C# 扩展方法的使用

扩展方法:是声明在非嵌套、非泛型的静态类中,为实现某种特殊功能,而为该数据类型追加的静态方法,该数据类型在形参中用this修饰。
以下是对String数据类型的扩展示例:

1、对String的扩展方法类

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _Extend
{
    public static class Extend
    {
        /// 
        /// 不带参数的扩展方法
        /// 
        /// 要扩展的数据类型
        /// 
        public static int StringToInt(this string str)
        {
            bool r = int.TryParse(str, out int i);
            if (r)
            {
                return i;
            }
            return 0;
        }

        /// 
        /// 带参数的扩展方法
        /// 
        /// 要扩展的数据类型
        /// 参数
        /// 
        public static string StringCut(this string str,int index)
        {
            return str.Substring(index);
        }
    }
}

2、调用上面的扩展方法

C# 扩展方法的使用_第1张图片

你可能感兴趣的:(常用代码,c#)