Programming/C#2010/07/20 15:35

나열 형식 선언하기

enum Season { Spring, Summer, Fall, Winter }

 

나열형 변수 선언하기

Season currentSeason;

 

나열형 변수에 값 지정하기

currentSeason = Spring; //오류

currentSeason = Season.Spring //올바름

 

구조체 선언하기

struct Time

{

   public Time(int hh, int mm, int cc)

   { … }

   …

   private int hours, minutes, seconds;

}

 

구조체 변수 선언하기

Time now;

 

구조체 변수에 값 초기화하기

Time lunch = new Time(12, 30, 0);

Posted by Mizix
TAG ,