Click here to Skip to main content
15,892,768 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
please provide solution for this error

What I have tried:

please provide solution for this error
Posted
Updated 11-Oct-21 1:53am
Comments
Richard MacCutchan 11-Oct-21 7:14am    
How can anyone provide a solution for something we cannot see? Please use the Improve question link above, and add complete details of your problem.

The error message is telling you exactly how to fix this error:
Quote:
are you missing a using directive or an assembly reference?

You either didn't add a using directive at the top of the file to tell the compiler in what namespace the code you're trying to use is in,

or you don't have a reference set to the .DLL the code is in,

or both.

This usually happens with newbs to C# and VB.NET when they copy code off the internet without understanding what it does or what the code requires to run.
 
Share this answer
 
You have to add a reference or a using statement to wherever the polly code is.

You have code calling polly but the complier does not know where it is.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900