web-dev-qa-db-fra.com

Comment résoudre '... est un' type 'qui n'est pas valable dans le contexte donné'? (C #)

Le code suivant produit l'erreur:

Erreur: 'CERas.CERAS' est un 'type', qui n'est pas valide dans le contexte donné

Pourquoi cette erreur se produit-elle?

using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WinApp_WMI2
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            CERas.CERAS = new CERas.CERAS();
        }
    }
}
15
Penguen

Changement

private void Form1_Load(object sender, EventArgs e) 
    { 
        CERas.CERAS = new CERas.CERAS(); 
    } 

à

private void Form1_Load(object sender, EventArgs e) 
    { 
        CERas.CERAS c = new CERas.CERAS(); 
    } 

Ou si vous souhaitez l'utiliser à nouveau plus tard

le changer en

using System.Drawing; 
using System.Linq; 
using System.Text; 
using System.Windows.Forms; 

namespace WinApp_WMI2 
{ 
    public partial class Form1 : Form 
    { 
        CERas.CERAS m_CERAS;

        public Form1() 
        { 
            InitializeComponent(); 
        } 

    private void Form1_Load(object sender, EventArgs e) 
    { 
        m_CERAS = new CERas.CERAS(); 
    } 
} 


}
22
Adriaan Stander

CERAS est un nom de classe qui ne peut pas être attribué. Comme la classe implémente IDisposable une utilisation typique serait:

using (CERas.CERAS ceras = new CERas.CERAS())
{
    // call some method on ceras
}
5
Darin Dimitrov

Vous avez oublié de spécifier le nom de la variable. Ce doit être CERas.CERAS newCeras = new CERas.CERAS();

5
Marcel Gheorghita