LinkedListLibrary

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)
{
}
}
}
 
J

Jeff Johnson

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.
 
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)
       {
       }
   }
}

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
Usercontrol - Loading into SplitContainer 8
inheritance problem 2
error :( 4
? 7
where T : class 1
winforms project 'ListItem' not Recognized 1

Top