1.

What Is Using Keyword?

Answer»

using KEYWORD can be used in TWO format
1.include the namespace in file
2.handle the idisposable objects INSIDE using BLOCK.

iFace obj = new myclass()

Myclass obj1 = new myclass()

Obj.hey();
Obj1.hey();

using keyword can be used in two format
1.include the namespace in file
2.handle the idisposable objects inside using block.

iFace obj = new myclass()

Myclass obj1 = new myclass()

Obj.hey();
Obj1.hey();



Discussion

No Comment Found