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

Posted enych

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 自定义类中括号取值 测试相关的知识,希望对你有一定的参考价值。

    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# 自定义类中括号取值 测试的主要内容,如果未能解决你的问题,请参考以下文章

c#学习笔记02----自定义类库及反编译

C# list自定义类的查询

使用C#为MSTest测试项目实现自定义断言

在asp.net的自定义类(C#)中怎样把变量输出到页面?

C# 2008(.net)百分跪求高手关于自定义的类转换byte[]问题!

WCF c#中自定义类的传输问题