public Unit.Unit Unit
{
get { return unit; }
set { unit = value; }
}
public Unit.Unit Unit
{
get => unit;
set => unit = value;
}
๋ผ์ด๋์์ ์ด๋ฐ์์ผ๋ก ํด๋ผ๊ณ ํ๋๋ฐ ์ด๋ฌธ๋ฒ์ c#์์ ๋ญ๋ผ๊ณ ํ์ ธ??
public Unit.Unit Unit
{
get { return unit; }
set { unit = value; }
}
public Unit.Unit Unit
{
get => unit;
set => unit = value;
}
๋ผ์ด๋์์ ์ด๋ฐ์์ผ๋ก ํด๋ผ๊ณ ํ๋๋ฐ ์ด๋ฌธ๋ฒ์ c#์์ ๋ญ๋ผ๊ณ ํ์ ธ??
https://docs.microsoft.com/ko-kr/dotnet/csharp/programming-guide/classes-and-structs/properties
์์ฑ ํ๋กํผํฐ
ํ๋กํผํฐ