Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. public class MyClass
  2. {
  3. public int Prop { get; set; }
  4. }
  5.  
  6. public class MyClass2
  7. {
  8. public int Prop1 { get; set; }
  9. public int Prop2 { get; set; }
  10. public int Prop3 { get; set; }
  11. public int Prop4 { get; set; }
  12. public int Prop5 { get; set; }
  13. }
  14.  
  15. .method public hidebysig specialname rtspecialname instance void
  16. .ctor() cil managed
  17. {
  18. .maxstack 8
  19.  
  20. // [46 9 - 46 26]
  21. IL_0000: ldarg.0 // this
  22. IL_0001: call instance void [mscorlib]System.Object::.ctor()
  23.  
  24. // [49 9 - 49 10]
  25. IL_0006: ret
  26. }
  27.  
  28. .method public hidebysig specialname rtspecialname instance void
  29. .ctor() cil managed
  30. {
  31. .maxstack 8
  32.  
  33. // [32 9 - 32 25]
  34. IL_0000: ldarg.0 // this
  35. IL_0001: call instance void [mscorlib]System.Object::.ctor()
  36.  
  37. // [35 9 - 35 10]
  38. IL_0006: ret
  39.  
  40. } // end of method MyClass::.ctor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement