In class Employee
I've got some methods, which work fine. Now I wanted to add new method, for example
public void ExampleMethod()
{
}
Then I call it
Employee employee = new Employee();
employee.ExampleMethod();
ExampleMethod is present in IntelliSense displayed after dot, when I hit F12 it also redirect me to that method, but while starting project I've got an error: 'Employee' does not contain a definition for 'ExampleMethod' and no extension method 'ExampleMethod' accepting a first argument of type 'Employee' could be found (are you missing a using directive or an assembly reference?)
I don't know why this error is caused, because all other earlier methods work fine. What's the problem?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…