Exemple #1
0
 public void SetData(StatefulClassDto dto)
 {
     TheInt    = dto.TheInt;
     TheString = dto.TheString;
 }
Exemple #2
0
 public void GetData(out StatefulClassDto dto)
 {
     dto = new StatefulClassDto {
         TheInt = TheInt, TheString = TheString
     };
 }