LinkedListLibrary

  • Thread starter Thread starter tom
  • Start date Start date
T

tom

hi i have a problem about LinkedListLibrary
it has error :

Error 1 The type or namespace name 'LinkedListLibrary' could not be
found (are you missing a using directive or an assembly reference?)

using System;
using LinkedListLibrary;

namespace ConsoleApplication11
{
class Program
{
static void Main(string[] args)
{
}
}
}
 
hi i have a problem about LinkedListLibrary
it has error :

Error 1 The type or namespace name 'LinkedListLibrary' could not be
found (are you missing a using directive or an assembly reference?)

using System;
using LinkedListLibrary;

namespace ConsoleApplication11
{
class Program
{
static void Main(string[] args)
{
}
}
}

This is some third-party component. Right-click on the References folder in
your project list and browse for the assembly (DLL) that contains this
namespace.
 
hi i have a problem about  LinkedListLibrary
it has error :
Error 1 The type or namespace name 'LinkedListLibrary' could not be
found (are you missing a using directive or an assembly reference?)
using System;
using LinkedListLibrary;
namespace ConsoleApplication11
{
   class Program
   {
       static void Main(string[] args)
       {
       }
   }
}

This is some third-party component. Right-click on the References folder in
your project list and browse for the assembly (DLL) that contains this
namespace.

thanks of alll
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Generic 3
System.Diagnostics.Process 4
inheritance problem 2
? 7
error :( 4
static 2
try & catch 8
creating a file 7

Back
Top