System.Diagnostics.DebuggerTypeProxyAttribute.DebuggerTypeProxyAttribute C# (CSharp) Method

DebuggerTypeProxyAttribute() public method

public DebuggerTypeProxyAttribute ( Type type ) : System
type Type
return System
        public DebuggerTypeProxyAttribute(Type type)
        {
            if (type == null)
            {
                throw new ArgumentNullException("type");
            }
            this.typeName = type.AssemblyQualifiedName;
        }

Same methods

DebuggerTypeProxyAttribute::DebuggerTypeProxyAttribute ( string typeName ) : System
DebuggerTypeProxyAttribute