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

GetType() public method

public GetType ( object value ) : Type
value object
return System.Type
        public Type GetType(object value)
        {
            if (value == null)
                return null;

            return value.GetType();
        }
wwDotNetBridge