-1
From what I noticed your class is not inside a namespace.
The right thing would be:
namespace WpfApp1
{
public class MinhaClasse
{
static void main(string[] args){
}
}
}
-1
-1
From what I noticed your class is not inside a namespace.
The right thing would be:
namespace WpfApp1
{
public class MinhaClasse
{
static void main(string[] args){
}
}
}
an excellent observation, but this is still not enough to reproduce the problem and affirm the solution
the main was even solved but not the original
Your project is a Consoleapplication?
Browser other questions tagged c#
You are not signed in. Login or sign up in order to post.
Post the code instead of the image
– Leandro Angelo
This doesn’t make sense, it’s all right. It can be project configuration that is outside the standard.
– Maniero
How did you create the project? You selected the Console Application template?
– Leandro Angelo
probably it was the project that gave error,but I do not know how to make it correct
– 0000FFcar