C# 自定义类中括号取值 测试

前提是你 提交于 2019-11-29 06:12:16
    public class ABC : Hashtable{}
    static class Program
    {
        public static ABC  a= new ABC();
        static void Main(string[] args)
        {
            var c = a["0"]; //自定义类中括号取值
        }
    }

 

        var t = Request.Form["sets"].ToString();
  public abstract class HttpRequest
    {
        public abstract IFormCollection Form { get; set; }
    }

    public interface IFormCollection : IEnumerable<KeyValuePair<string, StringValues>>, IEnumerable
    {
  

        StringValues this[string key] { get; }

        int Count { get; }
     
        ICollection<string> Keys { get; }

        IFormFileCollection Files { get; }


        bool ContainsKey(string key);

      
        bool TryGetValue(string key, out StringValues value);
}

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!