Ejemplo n.º 1
0
        public static TResult FromBase64 <TResult>(this String input)
        {
            Type type = typeof(TResult);

            Object buffer = DDRIT.FromBase64(input, type);

            return((buffer == null) ? default(TResult) : (TResult)buffer);
        }
Ejemplo n.º 2
0
 public static Object FromBase64(this String input, Type type)
 {
     return(DDRIT.FromBase64(input, type));
 }
Ejemplo n.º 3
0
 public static TResult FromBase64 <TResult>(this String input)
 {
     return(DDRIT.FromBase64 <TResult>(input));
 }