C# 클래스

C#' 2015. 11. 6. 13:30

class Point

{

public int x;

public int y;

public Point() // 생성자함수

{

x = 0;

y = 0;
}

}

 

 

class Program

{

static void Main()

{

Point pt = new Point();

System.Console.WriteLine("({0}, {1})", pt.x, pt.y);

 

pt.x = 10;

pt.y = 20;

System.Console.WriteLine("({0}, {1})", pt.x, pt.y);

}

}

'C#'' 카테고리의 다른 글

C# DLL파일 만들기 와 만드는 이유  (0) 2015.11.06
C# 참조자복사  (0) 2015.11.06
C# 변수와 상수  (0) 2015.11.06
C# WriteLine 문자,문자열,상수,실수,진위형 출력  (0) 2015.11.06
C# 닷넷 시작하기  (0) 2015.11.06
블로그 이미지

왕왕왕왕

,