예제 #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);
        }
예제 #2
0
 public static Object FromBase64(this String input, Type type)
 {
     return(DDRIT.FromBase64(input, type));
 }
예제 #3
0
 public static TResult FromBase64 <TResult>(this String input)
 {
     return(DDRIT.FromBase64 <TResult>(input));
 }