Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Person
- {
- private string firstName;
- private string lastName;
- public Person(string firstName, string lastName)
- {
- this.firstName = firstName;
- this.lastName = lastName;
- }
- public string FullName
- {
- get { return $"{firstName} {lastName}"; }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement