C# language feature:
applies to
benefit
how to use
partial
keyword preceding the class definition and method definition and implementation.note
see also
example:
partial class Partial_Method_Example{
// Definition in file1.cs
partial void onNameChanged();
// Implementation in file2.cs
partial void onNameChanged()
{
// method body
}
}