Ler em inglês

Partilhar via


Aviso do compilador (nível 4) CS0649

O campo 'campo' nunca é atribuído e sempre terá seu valor padrão 'valor'

O compilador detetou uma declaração de campo privada ou interna não inicializada à qual nunca é atribuído um valor.

O exemplo a seguir gera CS0649:

// CS0649.cs  
// compile with: /W:4  
using System.Collections;  
  
class MyClass  
{  
   Hashtable table;  // CS0649  
   // You may have intended to initialize the variable to null  
   // Hashtable table = null;  
  
   // Or you may have meant to create an object here  
   // Hashtable table = new Hashtable();  
  
   public void Func(object o, string p)  
   {  
      // Or here  
      // table = new Hashtable();  
      table[p] = o;  
   }  
  
   public static void Main()  
   {  
   }  
}