5
Reply

NP69 “using” statements

Maha

Maha

Dec 11 2007 5:23 PM
2.2k

Hi Guys

 

NP69 “using” statements

 

There are many “using” statements in C#. Some of them are below. If we use using System; in a program we don’t need to use System in System.Console.WriteLine() method.

 

When developing a program how can one find out which code needs particular using” statement. Anyone knows please explain.

 

using System;

using System.Collections;

using System.Collections.Generic;

using System.Collections.ObjectModel;

using System.Text;

 

Thank you


Answers (5)