码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2019-09-04 13:05:50      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:class   定义   oid   tostring   string   abc   int   cti   try   

    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);
}

 

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

标签:class   定义   oid   tostring   string   abc   int   cti   try   

原文地址:https://www.cnblogs.com/enych/p/11458489.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!