Leggere in inglese

Condividi tramite


Errore del compilatore CS0811

Il nome completo per 'name' è troppo lungo per le informazioni di debug. Compilare senza l'opzione '/debug'.

Le informazioni di debug presentano vincoli di dimensioni per i nomi di variabile e di tipo.

Per correggere l'errore

  1. Se non è possibile modificare il nome, l'unica alternativa consiste nel compilare senza l'opzione DebugType.

Esempio

Il codice seguente genera l'errore CS0811:

// cs0811.cs  
//Compile with: /debug  
using System;  
using System.Collections.Generic;  
  
namespace TestNamespace  
{  
    using Long = List<List<List<List<List<List<List<List<List<List<List<List<List  
   <List<List<List<List<List<List<List<List<List<List<List<List<List<List<List<int>>>>>>>>>>>>>>>>>>>>>>>>>>>>; // CS0811  
  
    class Test  
    {  
        static int Main()  
        {  
            return 1;  
        }  
    }  
}