C#中含有多個Main函式的處理

iamzxf發表於2015-03-09


using System;

namespace CSharp.chapter01
{
    class helloworld1
    {
        static void Main()
        {
            Console.WriteLine("hello, world 1");
        }
    }

    class helloworld2
    {
        static void Main()
        {
            Console.WriteLine("hello, world 2");
        }
    }
}



相關文章