Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace MyNamespace
- {
- public class Rect
- {
- private int iHoehe;
- private int iBreite;
- public Rect()
- {
- iHoehe = 0;
- iBreite = 0;
- }
- public int Hoehe
- {
- get
- {
- return iHoehe;
- }
- set
- {
- iHoehe = value;
- }
- }
- public int Breite
- {
- get
- {
- return iBreite;
- }
- set
- {
- iBreite = value;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement