Error while compiling my project

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi,
When I try to compile my project , I am getting following error message
in my C#.net application.
"Namespace.projectname does not contain a definiation for method name"
where namespace is my project name and method name is my project method.
Anybody have any ideas to solve this problem? It is urgent.

thanks,
 
kannan said:
When I try to compile my project , I am getting following error message
in my C#.net application.
"Namespace.projectname does not contain a definiation for method name"
where namespace is my project name and method name is my project method.
Anybody have any ideas to solve this problem? It is urgent.

Could you post a short but complete program which demonstrates the
problem?

See http://www.pobox.com/~skeet/csharp/complete.html for details of
what I mean by that.

Note that projects don't directly contain methods - only classes and
structs do.
 
Back
Top