結構體定義使用struct類定義使用class
結構體:
struct testDemo{
int num;
void action(){
}
}
類:
class testDemo{
int num;
void action(){
}
}
==================
C#實例:http://www.eyesourcecode.com/f/CSharp/1