部分類
部分類提供了分類宣告(通常分成單獨的檔案)的能力。部分類可以解決的一個常見問題是允許使用者修改自動生成的程式碼,而不必擔心如果重新生成程式碼,他們的更改將被覆蓋。此外,多個開發人員可以使用相同的類或方法。
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."
}
}
}