zoukankan      html  css  js  c++  java
  • 用户自定义方法执行

     class Program
        {
            static void Main(string[] args)
            {
                string s = "zzq2";
                string temp = string.Empty;
                Matcher.matcher
                    .On("zzq1", x => temp = x)
                    .On("zzq2", x => temp = x + "123")
                    .Excute(s);
                Console.WriteLine(temp);
                Console.Read();
            }
        }
        public class Matcher
        {
            public static Matcher matcher { get { return new Matcher(); } }
            private static Dictionary<string, Action<string>> dic = new Dictionary<string, Action<string>>();
            public Matcher On(string str, Action<string> action)
            {
                dic.Add(str, action);
                return this;
            }
            public void Excute(string str)
            {
                var sourceDic = dic.Where(x => x.Key.Contains(str)).FirstOrDefault();
                sourceDic.Value(str);
            }
        }
    

      

  • 相关阅读:
    第十周作业--阅读(五一)
    第九周作业
    第八周作业
    第七周作业
    第六周作业
    模板
    第五周作业
    第四周作业
    第三周作业
    文件
  • 原文地址:https://www.cnblogs.com/since87/p/3550183.html
Copyright © 2011-2022 走看看