4 lines
253 B
Text
4 lines
253 B
Text
public partial class Foo : Bar // all parts of a partial class must have same access modifier;
|
|
{ // the class that a partial class inherits from only needs to
|
|
... // be specified in one location
|
|
}
|