示例#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);
 }