In C# , Usinf can be used in two ways:
1. As a directive where it's behavior will be as inclusion of namespace e.g
using System;
using System.IO;
As a statement which can be used only with types that implements IDisposable interface e.g.
``using( SQLDataRedaer dr=cmd.ExecuteReader())
{
while(dr.Read());
}