IO.Swagger.Client.ApiClient.ConvertType C# (CSharp) 메소드

ConvertType() 공개 정적인 메소드

Dynamically cast the object into target type. Ref: http://stackoverflow.com/questions/4925718/c-dynamic-runtime-cast
public static ConvertType ( Object source, Type dest ) : Object
source Object Object to be casted
dest System.Type Target type
리턴 Object
        public static Object ConvertType(Object source, Type dest)
        {
            return Convert.ChangeType(source, dest);
        }