Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.6k views
in Technique[技术] by (71.8m points)

c# - The name doesn't exist in the current context - How to resolve?

When I try to access a class that is not in the current namespace while I also added using for that class namespace but still receive an error.

There is an error that says:

The name 'AddNewDataFile' doesn't exist in the current context.

enter image description here

How can I resolve this error?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

When you receive The name doesn't exist in the current context, you can check for these options:

  • Maybe you haven't defined a variable or member with that name in the scope.
  • Maybe you misspelled an existing variable or member name.
  • Maybe the namespace that defines that class is missing.
  • Maybe your project needs to add a reference to the dll contains that type.

For more information and example see:


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.5k users

...