Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > .Net Framework 2.0 > Class Libraries


Search:
What's New - What's Hot
.NET Useful Functional Class Library     
Total Hits: 235  |  Today: 0Author: Tolga Birdal.      Rating:  
Read Reviews | Write Review |  Your Rating: 

In my .NET applications I use several type of classes for several type of different applications. You never know, what you come accross. This is a series of classes which any C# user may search in Google and spend considerable amount of time to find. Most of these classes I have taken from CodeProject and this can be considered as a tribute to codeproject. Of course, there are my implementations all over the place but there are also codes taken from code project. So thanks to ones who contribute...

Drawing Library     
Total Hits: 214  |  Today: 0Author: jonnynolimits.      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is a generic library for drawing (work in progress). It is composed by some base tools and shapes. It allows you to draw all shapes that you want to create and develop any tools to manage your figures....

Dragging Elements in a Canvas     
Total Hits: 165  |  Today: 0Author: Josh Smith.      Rating:  
Read Reviews | Write Review |  Your Rating: 

Someone asked me recently how to create a WPF application where the user can drag a blue rectangle around the screen. I solved that puzzle, but kept generalizing the solution until it became possible to drag any UIElement on a Canvas (including Buttons, Images, ComboBoxs, Grids, etc.) This article explores a class called CanvasDragManager, which can be attached to any Canvas, enabling the user to drag the objects inside the Canvas. The CanvasDragManager class also provides support for modifiy...

Using CodeDOM in .NET 2.0     
Total Hits: 257  |  Today: 0Author: Uday Denduluri      Rating:  
Read Reviews | Write Review |  Your Rating: 

CodeDOM is a very powerful Application Programming Interface (API) that is available with Microsoft .NET 2.0. This API can do wonders for you by generating code on the fly. This article takes a look at this technology and explains it with code examples wherever appropriate. CodeDOM is an API that helps in creating and compiling a programming structure at Runtime. Creating a programming structure involves creation of Namespace, Type – Class, Interface and even methods at the Runtime. The imple...

FileHelpers - An Automatic File Import/Export Framework     
Total Hits: 153  |  Today: 0Author: Marcos Meli      Rating:  
Read Reviews | Write Review |  Your Rating: 

The FileHelpers are an Automatic File Import/Export Framework for .NET that allows you to import data into your code as a typed data structure and then export it back. In almost every project there is a need to read/write data from/to a file of a specified format. For example for log parsing, data warehouse and OLAP applications, communication between systems, file format transformations (for example from a fixed length to a CSV file). This library aims to provide an easy and reliable way to acc...

DuplexChannelFactory(Of (TChannel)) Class     
Total Hits: 53  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Provides the means to create and manage duplex channels of different types that are used by clients to send and receive messages to and from service endpoints....

Running Queries On Multi-Core Processors     
Total Hits: 103  |  Today: 0Author: Joe Duffy and Ed Essey      Rating:  
Read Reviews | Write Review |  Your Rating: 

Multi-core processors are here. Once pervasive mainly in servers and desktop PCs, now multi-core processors are being used in mobile phones and PDAs, resulting in great benefits in power consumption. Responding to the increased availability of multi-processor platforms, Parallel Language Integrated Query (PLINQ) offers an easy way to take advantage of parallel hardware, including traditional multi-processor computers and the newer wave of multi-core processors....

Using FtpWebRequest and FtpWebResponse classes using VB.NET in .NET Framework 2.0     
Total Hits: 3327  |  Today: 0Author: Aadil      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article I’ll try to explain how you can use the newly added classes FtpWebRequest and FtpWebResponse to interact with any FTP server. In the new .NET Framework 2.0 Microsoft has added classes for operating with FTP servers. These classes are added in the System.Net namespace. You can download files from a remote FTP server using WebClient class. In this article I’ll explain how you can use these classes to get the list of directories and files present on a FTP server....

What’s New in the Base Class Libraries in .NET Framework 4     
Total Hits: 18  |  Today: 0Author: Justin Van Patten      Rating:  
Read Reviews | Write Review |  Your Rating: 

Just about everyone who uses Microsoft .NET uses the Base Class Libraries (BCL).When we make the BCL better, almost every managed developer benefits. This column will focus on the new additions to the BCL in .NET 4 beta 1....

Auto-implemented Class Properties     
Total Hits: 65  |  Today: 0Author: Roger McCook      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article is a brief overview of auto-implemented class properties, a concept first included with version 3.0 of the .NET platform released in June, 2006. This won't work with previous versions.* The term "auto-implemented properties" may sound exotic. You may be tempted to put off learning it. You may think it is complex and will take a long time to absorb. No, this is a simple topic you can learn in a few minutes. It will save time and make your code easier to read....

Introducing Generics in the CLR     
Total Hits: 56  |  Today: 0Author: Jason Clark      Rating:  
Read Reviews | Write Review |  Your Rating: 

Generics are a shipping feature of the Microsoft® .NET Framework 2.0, and managed code is faster, more maintainable, and more robust because of it.

Generics are an extension to the CLR's type system that allow developers to define types for which certain details are left unspecified. Instead, these details are specified when the code is referenced by consumer code. The code that references the generic type fills in the missing details, tailoring the type to its particular needs. The name ...

New Library Classes in "Orcas"     
Total Hits: 64  |  Today: 0Author: Mike Downen, Inbar Gazit, Justin Van Patten      Rating:  
Read Reviews | Write Review |  Your Rating: 

For the next version of the Microsoft .NET Framework (which will ship with the next release of Visual Studio® currently code-named "Orcas"), its assemblies have been divided into two groups, internally referred to as "red bits" and "green bits." The red bits include all the libraries that shipped before as part of the .NET Framework 2.0 and 3.0 (such as mscorlib.dll and system.dll). To maintain a high assurance of backward compatibility for Visual Studio "Orcas," changes in the red bits have bee...

Logging with NLog     
Total Hits: 269  |  Today: 0Author: hacked.emotions.      Rating:  
Read Reviews | Write Review |  Your Rating: 

While working with log4net(an old logging horse) i had to compromise on several of my needs. So i went on with my search to find another logging library that could satisfy my requirements. Then I Found NLog, a savior. NLog is a logging library which not only logs what you want to but also provides us options to log BETTER. Although it has a no of features, but the features which sets it apart from other logging library are: -You can implement window identity based file logging, i.e each person l...

Introducing Microsoft Enterprise Library Application Blocks     
Total Hits: 259  |  Today: 0Author: Joydip Kanjilal      Rating:  
Read Reviews | Write Review |  Your Rating: 

With a view to promote enterprise development, enhance developer productivity, reduce development time, facilitate efficient code maintenance and rapid application development, the Patterns and Practices group from Microsoft has introduced a collection of extensible and configurable application blocks that are commonly known as the Enterprise Library Application Blocks. These blocks are available for free download from Microsoft and are actually a collection of some reusable code snippets and c...

Get Ready for Windows Workflow Foundation     
Total Hits: 209  |  Today: 0Author: Mark Strawmyer      Rating:  
Read Reviews | Write Review |  Your Rating: 

During its long and storied history, Microsoft has had a number of forays into the world of workflow. The company has built workflow solutions for Microsoft Exchange, another in Dynamics CRM, and others within BizTalk, SharePoint, and Content Management Server. However, each of these was generally more for utility use, or it was fragmented, incomplete, or considered more of a false start. Often, third-party products were required to provide true workflow within Microsoft-based solutions....

An FTP client library for .NET 2.0     
Total Hits: 259  |  Today: 0Author: Howard Richards.      Rating:  
Read Reviews | Write Review |  Your Rating: 

One annoying omission from the 1.x framework for .NET was support for FTP. This could be rectified by various libraries (some free, others commercial) that filled this gap. However, with Visual Studio 2005 and 2.0 of the .NET framework, FTP makes a welcome appearance.
As well as adding FTP, Microsoft has moved support for web, mail and FTP requests out of System.Web and into System.Net which is a more logical approach....

Automating MapPoint with the .NET SDK     
Total Hits: 150  |  Today: 0Author: Forum      Rating:  
Read Reviews | Write Review |  Your Rating: 

Much like ASP.NET, desktop application developers have a choice of using one of the tools in Visual Studio .NET (C#, VB.NET, etc.) or simple a text editor for developing programs using the .NET framework....

Getting information about Drives on a system using the new DriveInfo class in .NET 2.0     
Total Hits: 609  |  Today: 0Author: Aadil      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article I’ll try to explain the features of the new DriveInfo class in the System.IO namespace in the new .NET Framework 2.0. In this article I’ll try to explain how you can get information about the drives present on a system and further their detailed properties using the new DriveInfo class. This class is an addition in the .NET Framework 2.0 and provides the benefits of getting drive information like the name of the drive letter, available space etc....

Type Library Browser for .NET 2.0     
Total Hits: 221  |  Today: 0Author: Tommi G      Rating:  
Read Reviews | Write Review |  Your Rating: 

Just wondered around the other day and tried to find a ready made class library of how to get COM+/ActiveX Type Library information from registered objects. Since I couldn't find anything, I decided to quickly implement my own version. The basic idea is that you should create new object of type TypeLibraries and with a single call of method GetAllFromRegistry() should populate this with information from registry. The form of collection is CollectionBase, so basically this should be easy to sort,...



Disclaimer - Privacy
© 2002-2012 DevASP.net