|
|
|
|
|
| | Total Hits: 235 | Today: 0 | Author: Tolga Birdal. | 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... |
| | Total Hits: 214 | Today: 0 | Author: jonnynolimits. | 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.... |
| | Total Hits: 165 | Today: 0 | Author: Josh Smith. | 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... |
| | Total Hits: 257 | Today: 0 | Author: Uday Denduluri | 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... |
| | Total Hits: 153 | Today: 0 | Author: Marcos Meli | 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... |
| | Total Hits: 53 | Today: 0 | Author: Microsoft Corporation | 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.... |
| | Total Hits: 103 | Today: 0 | Author: Joe Duffy and Ed Essey | 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.... |
| | Total Hits: 3327 | Today: 0 | Author: Aadil | 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.... |
| | Total Hits: 18 | Today: 0 | Author: Justin Van Patten | 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.... |
| | Total Hits: 65 | Today: 0 | Author: Roger McCook | 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.... |
| | Total Hits: 56 | Today: 0 | Author: Jason Clark | 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 ... |
| | Total Hits: 64 | Today: 0 | Author: Mike Downen, Inbar Gazit, Justin Van Patten | 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... |
| | Total Hits: 269 | Today: 0 | Author: hacked.emotions. | 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... |
| | Total Hits: 259 | Today: 0 | Author: Joydip Kanjilal | 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... |
| | Total Hits: 209 | Today: 0 | Author: Mark Strawmyer | 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.... |
| | Total Hits: 259 | Today: 0 | Author: Howard Richards. | 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.... |
| | Total Hits: 150 | Today: 0 | Author: Forum | 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.... |
| | Total Hits: 609 | Today: 0 | Author: Aadil | 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.... |
| | Total Hits: 221 | Today: 0 | Author: Tommi G | 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,... |
|
|
|
|
|
|
|
|
|
|
|
|
|