background preloader

C#

Facebook Twitter

Parameter passing in C# Many people have become fairly confused about how parameters are passed in C#, particularly with regard to reference types.

Parameter passing in C#

This page should help to clear up some of that confusion. If you have any suggestions for how it can be made clearer, please mail me. Microsoft also has a good page about this topic (which I believe uses exactly the same terminology as this page - let me know if they appear to disagree). Note: Lee Richardson has written a complementary article to this one, particularly for those who learn well with pictures. 800+ Hours of Visual Studio, Visual Basic.NET, C# Database, SQL Server, and ASP.NET Video Tutorials. C# C# School, lesson #1. C# School, lesson #1.

Visual C# Tutorials and How Do I Learning Resources on MSDN. C# Practical Learning. Learning C# by Example. The obligatory example for any language, using System ; public class HelloWorld { public static void Main ( string [] args ) { Console .

Learning C# by Example

Write ( "Hello World! " ); } }