C# Tutorials, Code Examples & Articles
|
|
|
 |
| General
Java, Applets, J2EE,
J2ME, J2SE,
JavaBeans, JavaScript,
JDBC, Jini,
JSP, Servlets,
Swing |
 |
| General
Linux, Apache, MySQL,
PostgreSQL |
 |
| Active
Server Pages, ActionScript,
ASP.NET, C++,
C#, Perl,
PHP, Python,
Visual Basic, VB.NET |
 |
| |
Let the Education
Guide Network help you accelerate your career:
Learn more about...
Cooking
Schools
Culinary
Arts Schools
Online
MBA Programs
Our Web Sites:
Online
Degree Guide
The Vocational
School Guide
|
| |
| CSS,
DHTML, JavaScript |
 |
| ColdFusion,
Dreamweaver, Flash,
FrontPage, GoLive |
 |
| General
Web Services, .NET, SOAP,
UDDI, WSDL |
 |
| 3G,
802.11, EPOC,
i-mode, J2ME,
Palm, Pocket
PC, WAP, Windows
CE, WML, WiMax |
 |
| XML
(General) , ebXML, RSS,
SAX, XSLT,
VoiceXML, WML,
WSDL, XHTML,
XML Schema |
|
|
Tutorials & Training Courses
on CD-ROM
Over 300 Titles to choose from: from Web Design to
Programming, from
Dababases to Certifications. TRY FOR FREE!
Do you need high quality training at an afforable
price?
Do you need training that is easy to follow,
informative and allows you to master complex applications
fast?
Do you need to learn how to master Programming, Web
Design and Graphics?
Click
here to try a FREE Demo &
view the full range of training CD-ROMs
|
|
There are 700 articles & tutorials regarding "C#".
- 25.) Inner Classes In C#
- By Saju Like Java, in C# also inner classes are possible. The program code demonstrates the implementation of inner classes and structures in classes. If we want to create an instance out side the class the inner class and inner structure should be public. Unlike java there will only one EXE is created, but in java more than one class files will create. The following program is self explanatory with proper output //Here Demonstrating class ,innerclass and inner structure //Demonstrating...
Found at C# Help
- 26.) Logic Game In C#
- By Pavel Tsekov Here is a logic game in C#. The ojective of the game is to click the green buttons until they turn red. The code gives examples of how to use windows forms, buttons and LOTS more. /* A little logical game. A little practice with C#. project created on 02/09/2001 at 01:05 Author : Pavel Tsekov */ using System; using System.Windows.Forms; using System.Drawing; class MainForm : Form { private const int BUTTON_COUNT=25; //count of buttons (exact square 16,25,36,49,...)...
Found at C# Help
- 27.) C# ExoEngine
- By Ben Houston Introduction For my fourth year computer graphics course I wrote a little 3D engine using C# and the .NET platform. I decided to go this route as opposed to the C++ route that everyone else took in the course because I wanted to see whether C# lived up to it's hype. Surprising, after writing about 600kB of code in C# it seems like it is a decent language after all and possibly an effective replacement for the C++ even in demanding field of real-time graphics. When I...
Found at C# Help
- 28.) Namespaces In C#
- By ArunGG Introduction : This article bring in you to C# Namespaces. MY objectives are as follows: To give the picture what Namespace is. Learn how to implement the "using" directive. Learn to use "alias" directives. Understand what are namespace members.. NEED FOR NAMESPACES : Namespaces allow you to create a system to organize your code. A good way to organize your namespaces is via a hierarchical system. You put the more general names at the top of the hierarchy and get more specific...
Found at C# Help
- 29.) Message Filtering With C#
- By Pavel Tsekov In C# we can filter our application's messages so some of them don't get dispatched. See the example below of how to prevent the user from clicking the Left Mouse button in our application: // created on 20.10.2001 at 18:04 //This example has 2 classes //1. MyFilter, which exposes the IMesageFilter interface //The PreFilterMessage method is overriden for our needs //2. MainForm, which is our main form using System; using System.Windows.Forms; class...
Found at C# Help
- 30.) Use of DATE Jargon in C#
- By Prasad H. Use of Date Jargaon in C#.The following program will use some functions of DateTime class. This is a console based program which shows current months calendar and also provide option for viewing next month,year,previous month,years calendar too. using System; class MyDate { private int Year; private int Month; private static int Day=1; MyDate() { DateTime today=DateTime.Now; this.Year=today.Year; this.Month=today.Month; } public static void Main() { MyDate oCalendar=new...
Found at C# Help
More articles & tutorials (Index of all articles & tutorials)
|
|