How do I get System.Net.IrDA namespace in C# express

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I cannot seem to locate the System.Net.IrDA namespace in C# express. Where
could I get this dll?
 
|I cannot seem to locate the System.Net.IrDA namespace in C# express. Where
| could I get this dll?
| --
| L. A. Jones

There is no such namespace, IrDAClient is a class of Sytem.Net.Sockets
namespace (in system.net.irda.dll) and IrDAEndpoit is a class in System.Net

Willy.
 
I am new on some of these terms. I'll just tell you what I want to do. I want
to list all devices using IrDaHints, but when I use System.Net.Sockets
namespace and I try to use the IrDAEndpoint class, I get get missing
assembly/reference error. Additionally how am I sure that I have
system.net.irda.dll installed? I'm using C# express. Thanks.--
L. A. Jones
 
Additionally, I know how to 'include' a namespace in a program. How do I
'include' an assembly?

Note: Learned programming (Pascal) in early 90's in college, been a teacher
since. Just branching out in programming.
 
|I am new on some of these terms. I'll just tell you what I want to do. I
want
| to list all devices using IrDaHints, but when I use System.Net.Sockets
| namespace and I try to use the IrDAEndpoint class, I get get missing
| assembly/reference error. Additionally how am I sure that I have
| system.net.irda.dll installed? I'm using C# express. Thanks.--
| L. A. Jones
|
|

IrDA is part of the Compact Framework and included with the retail version
of VS2005 only. It's also included with the Net Framework 2.0 SDK. That
means that there is no project support with VC Express.

Check this URL
http://www.microsoft.com/downloads/...6B-356B-4A2C-857C-E62F50AE9A55&displaylang=en
especially the end of the page for aditional downloads.

Willy.
 

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

Back
Top