58

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 valuenull' (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?

Cœur
  • 37,241
  • 25
  • 195
  • 267
iseeall
  • 3,381
  • 9
  • 34
  • 43

5 Answers5

104

You could use #pragma warning to disable and then re-enable particular warnings:

public class MyClass
{
    #pragma warning disable 0649

    // field declarations for which to disable warning
    private object foo;

    #pragma warning restore 0649

    // rest of class
}

Refer to Suppressing “is never used” and “is never assigned to” warnings in C# for an expanded answer.

Community
  • 1
  • 1
Douglas
  • 53,759
  • 13
  • 140
  • 188
18

I believe it's worth noting the warning can also be suppressed by using inline initialization. This clutters your code much less.

public class MyClass
{
    // field declarations for which to disable warning
    private object foo = null;

    // rest of class
}
BMac
  • 463
  • 3
  • 8
  • 2
    also another way to do the same is with `default`; `private object foo = default;` – mayo May 18 '20 at 14:39
10
//disable warning here
#pragma warning disable 0649

 //foo field declaration

//restore warning to previous state after
#pragma warning restore 0649
Alexander Bortnik
  • 1,219
  • 14
  • 24
6
public class YouClass
{
#pragma warning disable 649
    string foo;
#pragma warning restore 649
}
Hamlet Hakobyan
  • 32,965
  • 6
  • 52
  • 68
1

If you want to disable ALL warnings in the project (rather than per script) then do this:

Ceate a text file called mcs.rsp (for editor scripts) in your YOUR_PROJECT_NAME/Assets directory with contents (for example):

-nowarn:0649

(You can change the number to match whatever warning you want)

Original answer

Note: This doesn't disable the warnings in the Unity console if you are using Unity (I am still investigating how to remove those)

Here is some Unity documentation with more information

Aggressor
  • 13,323
  • 24
  • 103
  • 182