예제) struct
using System;
struct People{
public string name; //ß(1)
public int age;
}
class StructTest{
public static void Main() {
People he; //ß(2)
he.name = “kym"; //ß(3)
he.age = 20;
Console.WriteLine("이름: {0}",he.name);//ß(4)
Console.WriteLine("나이: {0}",he.age);
}
}
'닷넷 > C#/ASP/ADO.NET' 카테고리의 다른 글
[ C#개발과정 Tip ]- 변수(Variable) (0) | 2015.08.27 |
---|---|
[ C#개발과정 Tip ]- 설명) struct (0) | 2015.08.27 |
[ C#개발과정 Tip ]- struct (0) | 2015.08.26 |
[ C#개발과정 Tip ]- 예제) enum (0) | 2015.08.26 |
[ C#개발과정 Tip ]- enum type (0) | 2015.08.25 |