24 lines
403 B
C#
24 lines
403 B
C#
|
using System;
|
|||
|
|
|||
|
/*
|
|||
|
* Сыойства (Properties)
|
|||
|
*
|
|||
|
* Автоматические свойства (prop)
|
|||
|
*/
|
|||
|
class Point
|
|||
|
{
|
|||
|
private int x;
|
|||
|
public void SetX(int x) => this.x = x;
|
|||
|
public int GetX() => x;
|
|||
|
}
|
|||
|
|
|||
|
class Program
|
|||
|
{
|
|||
|
static void Main()
|
|||
|
{
|
|||
|
Point point = new Point();
|
|||
|
point.SetX(5);
|
|||
|
Console.WriteLine(point.GetX());
|
|||
|
Console.ReadKey();
|
|||
|
}
|
|||
|
}
|