Code inspection: Empty implementation of 'partial void' method is redundant
This inspection reports partial void
methods with empty implementation bodies. Such implementations are not used in any way and can be safely removed.
partial class Sample
{
partial void Test(string s);
}
partial class Sample
{
partial void Test(string s) { }
}
partial class Sample
{
partial void Test(string s);
}
partial class Sample
{
}
Last modified: 12 November 2024