569 Views
C# 8 (and above) has some restrictions regarding partial methods. For example : Partial methods must have a void return type Partial methods can't have out parameters Partial methods can't have any accessibility keyword (public, private, protected etc....) C# 9 aims to remove these restrictions.
0 comments