C# language feature:
applies to
benefit
how to use
partial
keyword modifier.example:
// note partial keyword
partial class Partial_Class_Example
{
string name { set; get; }
}
// declaration below can be in a different or even the same file
partial class Partial_Class_Example // note the class name is the same as above!
{
string phone { set; get; }
}