部分类
部分类提供了分类声明(通常分成单独的文件)的能力。部分类可以解决的一个常见问题是允许用户修改自动生成的代码,而不必担心如果重新生成代码,他们的更改将被覆盖。此外,多个开发人员可以使用相同的类或方法。
using System;
namespace PartialClassAndMethods
{
public partial class PartialClass
{
public void ExampleMethod() {
Console.WriteLine("Method call from the first declaration.");
}
}
public partial class PartialClass
{
public void AnotherExampleMethod()
{
Console.WriteLine("Method call from the second declaration.");
}
}
class Program
{
static void Main(string[] args)
{
PartialClass partial = new PartialClass();
partial.ExampleMethod(); // outputs "Method call from the first declaration."
partial.AnotherExampleMethod(); // outputs "Method call from the second declaration."
}
}
}