I have some fields in a C# class which I initialize using reflection. The compiler shows CS0649 warning for them:
Field
foo' is never assigned to, and will always have its default value
null' (CS0649) (Assembly-CSharp)
I'd like to disable the warning for these specific fields only and still let the warning be shown for other classes and other fields of this class. It is possible to disable CS0649 for the whole project, is there anything more fine-grained?