Lezen in het Engels

Delen via


Compilerfout CS1512

Trefwoord 'basis' is niet beschikbaar in de huidige context

Het basiswoord is buiten een methode, eigenschap of constructor gebruikt.

In het volgende voorbeeld wordt CS1512 gegenereerd:

// CS1512.cs  
using System;  
  
class Base {}  
  
class CMyClass : Base  
{  
    private String xx = base.ToString();   // CS1512  
    // Try putting this initialization in the constructor instead:  
    // public CMyClass()  
    // {  
    //    xx = base.ToString();  
    // }  
  
    public static void Main()  
    {  
        CMyClass z = new CMyClass();  
    }  
}