5
Answers

NP69 “using” statements

Ask a question
Maha

Maha

16y
2.2k
1

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)