New is a keyword. To get reference or addressing of the objects.
New keyword will work for Variables(int,float ,..... example : int i=new int();)
New keyword will work for class ( classA a =new classA(); )
New keyword also work as modifier
publc classA
{
public void AB(){ }
}
public classB:A
{
new public void AB() { }
}
More over it will use to assign memory dynamically