Hi guys,
I have been using VB for years VBA - VB6 - VB.Net nothing major really just small script here do you think i could pick up C# easily?
Er I'd say more than that - vb6 etc isn't even OO.Half a day for the basics, a full day to get to a stage where you feel you can probably start converting or start a new project in the language.
Er I'd say more than that - vb6 etc isn't even OO.
.NET is.
I find Delphi is faster due to it being native as opposed to interpreted,but for most tasks on a modern PC your probably wouldn't notice.
Only manged C++ uses .net.These days anything .NET is interpreted now. Even C++. It really doesn't make much difference in terms of speed anymore. The mid-level parser takes very little resources and time.
To be pedantic, .NET code is JIT compiled into native code just before it's run. It's faster than a true scripting language like Perl, for instance, but a bit slower than an optimised native language like C++.