コード例 #1
0
ファイル: Base64Helper.cs プロジェクト: offshore3/planpoker
 public static string Base64Decode(string source)
 {
     byte[] barray = Base64Helper.FromBase64String(source);
     return(Encoding.Default.GetString(barray));
 }
コード例 #2
0
ファイル: Base64Helper.cs プロジェクト: offshore3/planpoker
 public static string Base64Encode(string source)
 {
     byte[] barray = Encoding.Default.GetBytes(source);
     return(Base64Helper.ToBase64String(barray));
 }