I tried searching through internet , but not able to get anything.
I have a method with a Boolean default parameter , i want to find places where they are specifically sending value other than the default value with a compiler warning.
public example(SomeObject value , IsChecked = false )
How to find places , where they send IsChecked as true without giving find all references.
Cannot specify the whole method as obsolete , Need to find way to specify parameter value as obsolete ( only primitive parameter and static values , not using any run time evaluated variables also ).