Related resources for C# 2.0
  • C# 2.0 Features: Property Accessor Accessibility Modifiers 10/20/2023 5:20:11 AM. One of the new features added to C# version 2.0 is accessibility modifier support for property accessor. In this article, I will show you the advantages and coolness of using this feature.
  • Iterator In C# 2.09/20/2023 5:33:57 AM. Iterator is one of the new feature in C# 2.0. I am trying to explain it with Employees and Department classses.
  • Generics in C#9/5/2023 8:59:02 AM. Generics are the most useful C# 2.0 language extensions, beside Anonymous methods, Iterators, Partial types And Nullable types.
  • Anonymous Methods in C# 2.08/20/2023 2:37:07 PM. In this article, we will explore the anonymous method feature introduced in C# 2.0.
  • Generic Types in C# 2.0 with Sample3/5/2019 5:26:02 AM. This article discusses generic types available in C# 2.0. The article also shows some sample source code on how to use generic types.
  • Generics in C# 2.03/5/2019 5:10:15 AM. In this article, I specifically talk about Generics and how they improve upon arraylists and how they solve the issues posed by ArrayLists.
  • Writing C# 2.0 Unsafe Code10/13/2012 3:55:54 AM. We will see that C# allows suspending the verification of code by the CLR to allow developers to directly access memory using pointers.
  • Clipboard Ring Utility With Yahoo Messenger Alert Like Popup Window.5/15/2012 6:30:18 PM. An article to illustrate the use of windows clipboard via a clipboard ring utility. It also illustrates yahoo messenger like popup alert feature.
  • Anonymous Method in C#1/9/2012 5:05:46 PM. In this article you will see how to implement Anonymous Methods in C#.
  • Introducing C#3/28/2011 8:34:08 AM. C# is an object-oriented language which exploits benefits from classic object-oriented paradigm while eliminating its limitations to shape modern, powerful object orientation model.
  • Generics in C# 2.08/17/2007 4:33:38 AM. In this article, I just try to discuss on type safe data structures with the help of Generics in C# 2.0.
  • C# 2.0 Yield Return Iterator1/30/2007 2:19:15 AM. One interesting new feature of the C# 2.0 is the “yield” keyword. Basically it is used to iterate through objects returned by a method. It creates a state engine in IL so you can create methods that retain their state and don’t have to go through the pain of maintaining state in your code.
  • Generics in C# 2.02/2/2006 1:09:55 AM. In this article we will see how we can use generics in C#, we have read this concept as templates in C++.
  • New Features in C# 2.0 : Part 112/19/2005 5:11:40 AM. In a two part series I will explain new features introduces in C# language version 2.0. In this article I will talk about generics.
  • New Features in C# 2.0 : Part 212/19/2005 4:58:59 AM. In this article I will talk about iterators, anonymous methods, and partial classes.
  • C# 2.0 Feature: Nullable Types12/17/2005 6:26:51 AM. C# 2.0 allows you to assign null values to primitive types including boolean and integer, which wasn't possible in previous version of C#.