problem with newly added method in DLL.
Hi,
I have one DLL. It contains some methods. It was Build as successfully. After that I refered this DLL in one C# web application. It became good. But after I add one more method (has 1 argument) with this DLL successfully.
But the problem is, Now I am refering that DLL in same C# application it causes one error :
"No overload for method 'GetStoredProcedure' takes '1' arguments."
'GetStoredProcedure' this is my newly added overloaded method with single argument.
Everything is Correct. I don't know the reason.
Thank U.