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#".
- 13.) C# ON THE NET
- By Manish Babbar Simple program to demonstarte the power of c# on the Net. This program require web server e.g(java web server ,apache etc). Hello.cs class zzz { public static void Main() { System.Console.WriteLine("Content-Type:text/html "); System.Console.WriteLine("<body bgcolor=blue>"); System.Console.WriteLine("<center><p><p>"); System.Console.WriteLine("<b>Hello to everyone.Its me Manish babbar<b>"); System.Console.WriteLine("</body>"); } } Compile the class Hello.cs .This will...
Found at C# Help
- 14.) A C# Class
- By Pavel Tsekov A class, representing ABOUT form in C#. Use it in your projects. Here is an example of how we can make an ABOUT form. To use the class in your projects, you can write the following lines, somewhere in your code: fAbout frmAbout=new fAbout; frmAbout.ShowDialog(); So the about form will show itself modally in the center of the screen. Change some of the text things in the fAbout class to make it usable for you. Here is the class itself : // Here is an example of an ABOUT...
Found at C# Help
- 15.) Events In C#
- By Sanju An event is defined in C# as 'a member that enables an object or class to provide notifications'. Now, let us see in detail what an event is and how notifications are provided in C#. In an application, the change in status (or certain properties) of an object may result in some actions to be performed. For e.g., consider a dialog box with some buttons in it. Pressing any of these buttons will have to perform an action, for e.g., starting a new process or closing the dialog....
Found at C# Help
- 16.) Jump To C#
- By Vyas Bharghava When I started learning C# half the time I was trying to find Java equivalents so that I can learn effectively, leveraging my existing Java skills. At times I was so frustrated by my knowledge or lack there of. I'm penning this piece in the hope that my experience might help Java programmers to learn Java's new cousin (or villain according to some view points!). I'll only deal with those functionalities which are present in Java but are modified / changed completely in...
Found at C# Help
- 17.) C# DateTime Structure
- By S.Thangaraju Here is an example of how the DateTime Structure works for C#. It's extremely basic and very easy to follow. /* This program finds out your Age using the DateTime structure in C#. */ using System; class DOB{ private DateTime dtDob; private DateTime dtNow; private DateTime dtAge; private int intDay; private int intMonth; private int intYear; private int intHour; private int intMinute; private TimeSpan tsAge; private int intAgeYear; private int intAgeMonths; private int...
Found at C# Help
- 18.) Structures In C#
- By KL Structures in C#: - ==================== Example: - ========== class TestStruct { public static void Main() { SimpleStruct st = new SimpleStruct(4); System.Console.WriteLine(st.i); st.aMethod(); } } struct SimpleStruct { public int i; public SimpleStruct(int j) { i=j; } public void aMethod() { System.Console.WriteLine("Inside aMethod"); } } O/P 4 Inside aMethod Features of Structures: - ========================== * A structure or struct can contain only fields, methods, Etc., * In...
Found at C# Help
More articles & tutorials (Index of all articles & tutorials)
|
|