Enum som out parameter
HejKan man ikke sætte en enum som out parameter i en methode?
eksemple
public Form1()
{
InitializeComponent();
TestMethode(out Operation.state);
}
public enum Operation
{
state
};
public void TestMethode(out Operation State)
{
State = Operation.state;
}
Fejl meddelser:
The best overloaded method match for 'ReturnEnum.Form1.TestMethode(out ReturnEnum.Form1.Operation)' has some invalid arguments
Argument 1 must be passed with the 'out' keyword
A ref or out argument must be an assignable variable
På forhånd tak