J
Jack Addington
I have a class method defined as:
public virtual void SomeMethod(string key, Int32 id) {...}
In an descendent class I am typing in override and selecting the method from
the autoText. When it builds the shell for the method it is changing the
Int32 to an int ie)
public override void SomeMethod(string key, int id)
{
base.SomeMethod(key, id);
}
I am simply changing int back to Int32 but it struck me as strange... should
I be worried about this? Its in VS2003.
thx
public virtual void SomeMethod(string key, Int32 id) {...}
In an descendent class I am typing in override and selecting the method from
the autoText. When it builds the shell for the method it is changing the
Int32 to an int ie)
public override void SomeMethod(string key, int id)
{
base.SomeMethod(key, id);
}
I am simply changing int back to Int32 but it struck me as strange... should
I be worried about this? Its in VS2003.
thx