Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class MyClass {
- public string Name { get; set; }
- public int Age { get; set; }
- public Person(string name, int age) {
- Name = name;
- Age = age;
- }
- public void Operation1(int x) { ... }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement