Prev 1 2 3 4 5 6 7 8 9 Next
|
|
This is part one of a two part series on threading in C#. It's fairly complex so you have to have a good idea of what you're doing to jump into it. However, it describes how to create a thread and use join, monitor, and other features in accordance with threading. More info |
|
|
|
|
|
Component is nothing but the reusable piece of software in binary form that can be plugged into other components from other vendors. Reusable software programs that share a common interface allowing easy integration into applications that is it is a Binary standard that allows any two components to communicate that component may be written in any language. More info |
|
|
|
One of most repetitive, boring and thus error prone tasks when accessing databases from C# (or other language) is writing SQL commands. And when there is explicit SQL, no matter whether it's in stored procedures or inside your code, it has to be maintained. For instance if column is added to database, that one must be added to all 4 commands (INSERT, SELECT, UPDATE, DELETE - aka CRUD), and there are often more than one SELECTs with different filters. There are certainly times when you must write some SQL, but it would be better if machine could create as much as possible. This article is about writing some code that can do that job. It was made for SQL Server but you shouldn't have too much problems to customize it to db you use. More info |
|
|
|
Find out how Web Services work and are created in the .Net framework. This article introduces the concepts of Web Services, the technology and then demonstrates how Web Services are created and consumed via several examples. Source code available for download. More info |
|
|
|
TheCodeBehind is a friendly community of programmers and developers sharing work and experiences through blogs, articles and code. We welcome users from all levels of experience and knowledge, whether you're just starting out or have been programming for decades! More info |
|
|
|
This article describes NNTP in C#. It explains how to connect to a newsgroup and grab the news and then re-use the information for your own use. More info |
|
|
|
Boxing and unboxing is a essential concept in C#’s type system. With Boxing and unboxing one can link between value-types and reference-types by allowing any value of a value-type to be converted to and from type object. Boxing and unboxing enables a unified view of the type system wherein a value of any type can ultimately be treated as an object. More info |
|
|
|
This article simply describes how to download files in C#. More info |
|
|
|
The first of fifteen lessons exclusively available on Programmers Heaven to teach you about the .NET platform and the C# language. This lesson introduces the course, details the architecture of the .NET platform and gives a high level overview of the C# language. More info |
|
|
|
This article elucidates how to build and install-managed code that will be used from COM applications. A classic COM server is activated using the Service Control Manager (SCM). It looks up numerous information such as CLSIDs, IIDs, ProgIDs etc. More info |
|
|
| Prev 1 2 3 4 5 6 7 8 9 Next |