예제 #1
0
파일: Client.cs 프로젝트: zhouzu/Sample
 public string DecryptedSection(int x)
 {
     return(SecretKey == "" ? "" : AesOperation.Decrypt(this, Sections[x]));
 }