Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public struct SomeStruct
  2. {
  3. public SomeStruct(String stringProperty, Int32 intProperty)
  4. {
  5. this.StringProperty = stringProperty;
  6. this.IntProperty = intProperty;
  7. }
  8. public String StringProperty { get; set; }
  9. public Int32 IntProperty { get; set; }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement