Seasons.NET

ちょっとした技術ブログです

Entries from 2007-02-03 to 1 day

GCの世代サンプル

GCの仕組みを知る為のサンプル Collectの後にオブジェクトのGC.Generationが昇格する。 1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 5 namespace GCSample01 6 { 7 class Program 8 { 9 class Hoge 10 { 11 private string…