예제 #1
0
파일: Program.cs 프로젝트: Randray/Homework
        static void CreateCat(int num)
        {
            int i;

            for (i = 0; i < 99; i++)
            {
                CATSCOUT cat = new CATSCOUT();
            }
        }
예제 #2
0
파일: Program.cs 프로젝트: Randray/Homework
 static void Main(string[] args)
 {
     CreateCat(99);
     Console.WriteLine("CatCount: " + CATSCOUT.CatCount());
 }