Open EloiStree opened 2 months ago
https://learn.microsoft.com/fr-fr/dotnet/csharp/language-reference/keywords/partial-type
namespace PC { partial class A { int num = 0; void MethodA() { } partial void MethodC(); } partial class A { void MethodB() { } partial void MethodC() { } } }
https://learn.microsoft.com/fr-fr/dotnet/csharp/language-reference/keywords/partial-type