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
foo\' is never assigned
public class YouClass { #pragma warning disable 649 string foo; #pragma warning restore 649 }