コード例 #1
0
ファイル: Car.cs プロジェクト: gaweCodes/PrgAdvII
 private void OnSerialized(StreamingContext context)
 {
     RentedBy = Cesar.Decrypt(this.RentedBy, 15);
 }
コード例 #2
0
ファイル: Car.cs プロジェクト: gaweCodes/PrgAdvII
 private void OnSerializing(StreamingContext context)
 {
     //For some reason, this is secret stuff!
     RentedBy = Cesar.Encrypt(this.RentedBy, 15);
 }