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#".
- 31.) Pointers In C#
- By Sankar Ramanathan Here is a simple example of how to use pointers using C#. It is short and easy to follow. //Compilation //CSC FileName.CS using System; class Test { unsafe static void WriteLocations() { int *p; int i; i = 10; p = &i; string addr; addr = int.Format((int) p, "X"); //To Format the Pointer to a String Console.WriteLine(addr); Console.WriteLine(*p); *p = 333; Console.WriteLine(i); //Change the Value using Pointer i = *(&i) + 10; Console.WriteLine(i); } static void...
Found at C# Help
- 32.) C# Mainframe Interface
- By Sandeep Khurana This program shows how one can FTP to S/390, submit JCL and execute a DB2 query on a Mainframe all with C#!! Don't forget to make the required changes in the source code. All comments are documented within the code. Download Mainframe.cs
Found at C# Help
- 33.) New Modifiers in C#
- By ZIAD SALLOUM If you come from C++ or Java background to C#, no wonder that you will notice some strange keywords introduced to this new language. The first reaction will be what are these things for and why were they added ? Specially that, till now people were able to develop programs using the existing languages without problems. Among the set of new keywords added to C# there are new and override modifiers. Although new may not seem that new to you , however its usage as method...
Found at C# Help
- 34.) WebBroswer In C#
- By Alex Bondarev If you want to write into webbrowser in windows form in C#, you have to make reference MSHTML library and use its interface to do so. The trick is, if you did this in ASP or Visual Basic, you can simply put wb.document.write(sHtml) where wb is WebBrowser a object and sHtml is a string. In .Net it works differently. You can create sample project in VB.6 and load it into VB.NET. It would complains about bad type variable, but will compile and run (surprisingly, if just...
Found at C# Help
- 35.) Access Registry Using C#
- By Gokula Giridaran Access the registry using C#. Find out the system Information. Using this source code. /* I used it find Processor Information and Bios Information*/ using System; using Microsoft.Win32; class reg { static void Main() { RegistryKey hklm =Registry.LocalMachine; hklm=hklm.OpenSubKey("HARDWARE\DESCRIPTION\System\CentralProcessor\0"); Object obp=hklm.GetValue("Identifier"); Console.WriteLine("Processor Identifier :{0}",obp); RegistryKey hklp =Registry.LocalMachine;...
Found at C# Help
- 36.) Boxing And Unboxing C#
- By ArunGG 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. Converting a value type to reference type is called Boxing.Unboxing is an explicit operation. C# provides a unified type system ....
Found at C# Help
More articles & tutorials (Index of all articles & tutorials)
|
|