2009-12-20から1日間の記事一覧

C#のクラスと構造体

C#においてはクラスと構造体の違いって、参照型か値型かの違いなんですね。 namespace ConsoleApplication1 { class hoge { public int x; } struct piyo { public int x; } class Program { static void Main(string[] args) { //クラスの場合 hoge hoge1 =…