예제 #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);
 }