Westwind.WebConnection.wwDotNetBridge.CreateInstance C# (CSharp) Method

CreateInstance() public method

Creates a type reference from a given type name if the assembly is already loaded.
public CreateInstance ( string TypeName ) : object
TypeName string
return object
        public object CreateInstance(string TypeName)
        {
            object obj = CreateInstance_Internal(TypeName);
            return obj;
        }
wwDotNetBridge