We need you!

We're working hard on the next version of Developer Fusion. Let us know what you think we should be up to!

Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Book Cover C# Programming with the Public Beta
39608 times
Rated
Read 39,608 times

Contents

Related Categories

Namespaces and the Base Classes - Summary

Summary

In this chapter we've explained the concept of a namespace, and then gone on a quick tour of some of the functionality available via the .NET SDK base classes. Hopefully these examples will have shown you that the base classes make it very easy to carry out a lot of Windows tasks. Some of these tasks were previously only available via the Win32 SDK, which was not only conceptually harder to program with, but also made it difficult to carry out those tasks from any language other than C++. With the new base classes these tasks can be accomplished with ease from any .NET-aware or COM-aware language.

Comments

  • Re: [1676] Namespaces and the Base Classes

    Posted by cdm on 06 Jun 2008

    Are you kidding? System.IO.File and System.IO.Directory are static classes. They can't be instantiated. Did any of the authors or editors bother running this code to see if it would work?

  • MSMQ TriggerEvents C#

    Posted by amaretto on 04 Jun 2003

    I'm struggeling with the implementation of simple asynchroneous receive in C# :
    aQueue.enableNotification(eventObject, ref cursor, ref timeout)

    cursor and timeout are values (int) that can be retr...

  • Mistakes?

    Posted by mitzvah on 13 Nov 2002

    After spend a whole afternoon testing code in this article( they didn't work), I found this in msdn:
    [b]All methods of the Directory class are static and can therefore be called without having an ins...