Skip to content

Instantly share code, notes, and snippets.

@tabareh
tabareh / C# feature history.md
Last active September 5, 2017 12:26
C# Feature History

C# features history

C# 1.0

XML comments

				/// <summary>
				///  This class performs an important function.
				/// </summary>

Delegates ( a way to define a type for methods according to signature)

				// Declare a delegate:
				delegate void Del(int x);