Lezen in het Engels

Delen via


Compilerwaarschuwing (niveau 4) CS0649

Veld 'veld' wordt nooit toegewezen aan en heeft altijd de standaardwaarde 'waarde'

De compiler heeft een niet-geïnitialiseerde privé- of interne velddeclaratie gedetecteerd waaraan nooit een waarde is toegewezen.

In het volgende voorbeeld wordt CS0649 gegenereerd:

// 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()  
   {  
   }  
}