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#".
- 19.) Mapping a C# Com Interop class to fixed COM GUIDS
- By Robert M. Meagher When you create a C# class, you can make it available as a COM object to code outside of the VS.NET framework. This is done through use of the utility REGASM. REGASM creates a COM Type Library that describes the COM aspects of the class for use by both early binding in C++ (through #import directives) and late binding systems (such as VB6, through project references), and registers the COM class in the Registry under the HKLMSoftwareCLSID hierarchy. However, every...
Found at C# Help
- 20.) C# Interface Implementation
- By Pavel Tsekov Interface implementation can be confusing... I see a feature in C# that can be very confusing. In the example below we have a class (Test) that implements 2 interfaces (I1 and I2). So the logic says that we should have implementations in the class Test for both MyFunction() methods from I1 and I2. BUT! As you see in the example below everything works fine with only 1 implementation. This is not as correct as we expect, because we can't be sure which of the two interfaces...
Found at C# Help
- 21.) C# TimeZone
- By Valliyappan Swaminathan This small application will give idea about Time Zone in c#, .Net platform having Class name called TimeZone in System Name space, TimeZone is abstract Class so we can't create instants of TimeZone , but Time TimeZone having Method called as CurrentTimeZone it returns number of properties. Download the Mytimez.cs file and run
Found at C# Help
- 22.) CGI C# DB Application
- By Gildeoni Santos This is a small CGI Aplication built with Visual C# .Net Beta 2, to test this application you must have at least SQL Server 7 (running Northwind database) and IIS 5.0 installed. Steps to test the application: 1- Create an account for the Internet Users in SQL 7 (normally IUSR_YourComputerName). - Open SQL 7 "Enterprise Manager". - Go to "Security" right click in "Logins" (a context menu will appear). - Click "New Login". Then SQL Server Login Properties will appear. -...
Found at C# Help
- 23.) C# NotePad
- By Ajit Mungale With this project you get idea about. 1. How to use various dialogs in C#. -For opening and saving file -For changing Forecolor and Backcolor -For Print-Layout and Printing 2. How to do copy/paste using clipboard and without clipboard.(Code commented for w/o clipboard) 3. How to use windows registry for saving default setting of notepad. 4. Reading and writing text file. Download all source/files
Found at C# Help
- 24.) C# Custom Collection Implementation
- By Andrew D. Tollington This sample shows a simple custom collection implementation in C# with the .NET Framework. using System; using System.Collections; namespace Personal.Demos.Simple{ public class MainApp{ //entry point 'Main' public static void Main(){ //get us some Widgets Widgets MyWidgets = Initialize(); Console.WriteLine("Using 'foreach' - "); //enumerate through the collection with //the foreach constuct. foreach(Widget W in MyWidgets){ //call the same method on each item in...
Found at C# Help
More articles & tutorials (Index of all articles & tutorials)
|
|