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
 
Back
Top