本文实例分析了C#中分部方法和分部类。分享给大家供大家参考。 具体代码如下: 代码如下: using System; namespace Partial { class Program { static void Main(string[] args) { A a = new A(); } } partial class A { public A() { PrintHello(); PrintWorld