TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About C# 2.0
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mahesh Chand (2)
Munir Shaikh (2)
K S Ganesh (2)
Ahmed Abdel Ghany (1)
Dipal Choksi (1)
Abhishek Bhatore (1)
Saurabh (1)
Patrick Smacchia (1)
Mohammed Habeeb (1)
Vineet Kumar Saini (1)
Tuan Nguyen (1)
Matthew Cochran (1)
Ashish Singhal (1)
Related resources for C# 2.0
No resource found
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.0
9/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.0
8/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 Sample
3/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.0
3/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 Code
10/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.0
8/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 Iterator
1/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.0
2/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 1
12/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 2
12/19/2005 4:58:59 AM.
In this article I will talk about iterators, anonymous methods, and partial classes.
C# 2.0 Feature: Nullable Types
12/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#.