G
Gary
I would like to know if I use C# instead of Vb.Net for Server components,
will there a performance improvement ?
TIA,
Gary
will there a performance improvement ?
TIA,
Gary
Hi Gary,
C# and VB.NET should have identical performance (they're both compiled
to IL)
Frans,
Huh?
VB.NET methods are virtual only if one uses the Overridable or
MustOverride keywords.
Overridable & MustOverride are not the default, hence the methods are
not virtual by default!
Frans Bouma said:Are you sure about this? Afaik, VB.NET makes methods virtual by
default, but my knowledge about this may be lacking, I'm not a native VB.NET
developerI am aware of the Overridable keyword, and am not sure where
I've read that vb.net methods are virtual. So I can be wrong, that's why I
said 'afaik'![]()
Not that I'm a VB.NET developer either, but the MSDN says:
<quote>
Properties and methods are NotOverridable by default.
</quote>
(where NotOverridable means the obvious thing).