| Home : Programming : C# |
| Click "Subscribe" if you want to be notified of new or updated links in this category. | Subscribe |
|
|
C# Listings
|
|
Total:
59 | Displaying: 51 - 59 | Pages: << 1 2 3 4 5 6 |
|
|
|
Here is an example of how to create a NotePad like editor in C#. This code involves the usage of ToolBar, StatusBar, Menu, File Manipulation and a lot of String Functions. For this project I tried to use as many basic aspects of C# functionality as possible. Download Editor.zip
Updated: 03/13/2005
|
|
|
This program is the sample implementation of a logo language in c sharp (C#) . Logo turtle is a turtle drawing application ,which draw line on the screen with different colors and different shape. i am also providing some of samples figure implementations. Download turtlgraphics.zip figure1 (press figure1 button) figure2 (press figure2 button) figure3 (press figure3 button) figure4 (press figure4 button) figure5 (press figure5 button) All the Code written in clear...
Updated: 03/13/2005
|
|
|
Can you inherit from multiple classes in C#? Simply put, this cannot be done. However there are ways around it. From a design perspective you must ask yourself, Will a Class fully represent an object? Meaning that, if we have a base class with abstract methods designed for a particular application and we know that the inheriting object will only need the methods defined in that class. We now have a valid design pattern here. The Vehicle Car Object Lets say we have an...
Updated: 03/13/2005
|
|
|
The following example shows the usage of Regular Expressions in C#. The program basically has all the Validation Programs using Regular Expression. /* csc /r:System.Text.RegularExpressions.dll,System.dll Validation.cs */ using System.Text.RegularExpressions; using System; class Validation { public static void Main() { string strToTest; Validation objValidate=new Validation(); Console.Write("Enter a String to Test for Alphabets:"); strToTest=Console.ReadLine(); //Change here...
Updated: 03/13/2005
|
|
|
Make the .NET World a Friendlier Place with the Many Faces of the CultureInfo Class
Updated: 02/22/2005
|
|
|
Increase Your App's Reach Using WSDL to Combine Multiple Web Services
Updated: 02/22/2005
|
|
|
Learn to use the MBF Event Broker to assign event handlers to specific events in the Business Portal.
Updated: 02/20/2005
|
|
|
Learn about the two controls that are part of the Windows XP Tablet PC Edition Development Kit 1.7, as well as two commercially available controls made specifically for the tablet PC Platform.
Updated: 02/20/2005
|
|
|
Rediscover the Lost Art of Memory Optimization in Your Managed Code
Updated: 02/20/2005
|
|
|
C# Listings
|
|
Total:
59 | Displaying: 51 - 59 | Pages: << 1 2 3 4 5 6 |
|
|