System.ZXPProxy.Add C# (CSharp) Method

Add() public static method

public static Add ( Type t ) : void
t Type
return void
        public static void Add(Type t)
        {
            if(proxies.ContainsKey(t.FullName)) return;
            ZXPProxy zpp = new ZXPProxy(t);
            proxies.Add(t.FullName, zpp);
            zpp.CreateProxy();
            return;
        }