how to call any method of Project from classlibrary?
- by Pankaj Mishra
Hello
I have Class Library Where a class of multithreading Of Producer and consumer based.
private void WorkDeQueue()
{
while (true)
{
string Url = null;
lock (locker)
{
if (queueList.Count > 0)
{
Url = queueList.Dequeue();
…