using as a statements are used to define scope of IDisposable object.
@using (var form = Html.BeginForm()) {
//Stuff in the form
} // here Dispose on form is invoked.
Html.BeginForm return object that during dispose render closing tag for a form:
using for including namespace is directive.