123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Library6Properties
- {
- internal class Class1
- {
- private char symbol;
- public char Symbol
- {
- get
- {
- return symbol;
- }
- set
- {
- this.symbol = value;
- }
- }
- }
- }
|