473,404 Members | 2,195 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

VB.net 2003 good enough to create commmercial drawing program?

Opinions needed - is VB.net good enough to create a proper vector drawing program with some bitmap processing, i.e. does it have a rich enough feature set, and do the compiled programs run fast enough for a commericial release? Or do you have to use C#, maybe even C++ (more difficult languages I presume)
Nov 22 '05 #1
12 1620
Both C# and VB compile to the same IL - meaning they are both execute at the
same speed. That's the whole idea of .NET - the language itself makes little
difference. C# and VB.NET are actually very similar, with VB.NET not being
quite as rich, but for 95% of things there is a one to one correspondance.

"GraphicsMark" <ma********@bigpond.comREMOVE_THESE_CAPS> wrote in message
news:E4**********************************@microsof t.com...
Opinions needed - is VB.net good enough to create a proper vector drawing

program with some bitmap processing, i.e. does it have a rich enough feature
set, and do the compiled programs run fast enough for a commericial release?
Or do you have to use C#, maybe even C++ (more difficult languages I
presume)
Nov 22 '05 #2
Both C# and VB compile to the same IL - meaning they are both execute at the
same speed. That's the whole idea of .NET - the language itself makes little
difference. C# and VB.NET are actually very similar, with VB.NET not being
quite as rich, but for 95% of things there is a one to one correspondance.

"GraphicsMark" <ma********@bigpond.comREMOVE_THESE_CAPS> wrote in message
news:E4**********************************@microsof t.com...
Opinions needed - is VB.net good enough to create a proper vector drawing

program with some bitmap processing, i.e. does it have a rich enough feature
set, and do the compiled programs run fast enough for a commericial release?
Or do you have to use C#, maybe even C++ (more difficult languages I
presume)
Nov 22 '05 #3
As far as the language choice goes: use whatever you're comfortable
with. VB.NET and C# have very similar performance. If you think you
may be wanting the option of hardcore pointer then use C#, which
allows "unsafe" blocks, unmanaged by the CLR.

btw: C# is as easy to use as VB.NET. It took me just a matter of days
to get productive in it when I switched from VB.NET.

Nov 22 '05 #4
As far as the language choice goes: use whatever you're comfortable
with. VB.NET and C# have very similar performance. If you think you
may be wanting the option of hardcore pointer then use C#, which
allows "unsafe" blocks, unmanaged by the CLR.

btw: C# is as easy to use as VB.NET. It took me just a matter of days
to get productive in it when I switched from VB.NET.

Nov 22 '05 #5
Jimi <ji************@yahoo-dot-ca.no-spam.invalid> wrote:
As far as the language choice goes: use whatever you're comfortable
with. VB.NET and C# have very similar performance. If you think you
may be wanting the option of hardcore pointer then use C#, which
allows "unsafe" blocks, unmanaged by the CLR.


Be careful here - unmanaged and unsafe are two very different things.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #6
Jimi <ji************@yahoo-dot-ca.no-spam.invalid> wrote:
As far as the language choice goes: use whatever you're comfortable
with. VB.NET and C# have very similar performance. If you think you
may be wanting the option of hardcore pointer then use C#, which
allows "unsafe" blocks, unmanaged by the CLR.


Be careful here - unmanaged and unsafe are two very different things.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #7
Are you saying that you knew VB.net & GDI+ well, then learn't C# and could write productively in GDI+ in C# after only a few days!
Nov 22 '05 #8
Are you saying that you knew VB.net & GDI+ well, then learn't C# and could write productively in GDI+ in C# after only a few days!
Nov 22 '05 #9
Elp

"GraphicsMark" <ma********@bigpond.comREMOVE_THESE_CAPS> wrote in message
news:09**********************************@microsof t.com...
Are you saying that you knew VB.net & GDI+ well, then learn't C# and could

write productively in GDI+ in C# after only a few days!

The only difference between C# and VB .NET is the syntax. For example in VB
..NET, you declare an integer like that: "Dim i as int". In C# it would be:
"int c;".

Everything else is striclty identical as there is no separate API for VB
..NET and C# but they are using the same API. This means that, yes, only a
few days are needed to get used to the syntax changes.
Nov 22 '05 #10
Elp

"GraphicsMark" <ma********@bigpond.comREMOVE_THESE_CAPS> wrote in message
news:09**********************************@microsof t.com...
Are you saying that you knew VB.net & GDI+ well, then learn't C# and could

write productively in GDI+ in C# after only a few days!

The only difference between C# and VB .NET is the syntax. For example in VB
..NET, you declare an integer like that: "Dim i as int". In C# it would be:
"int c;".

Everything else is striclty identical as there is no separate API for VB
..NET and C# but they are using the same API. This means that, yes, only a
few days are needed to get used to the syntax changes.
Nov 22 '05 #11
Elp <ro********@REMOVEME.hotmail.com> wrote:
"GraphicsMark" <ma********@bigpond.comREMOVE_THESE_CAPS> wrote in message
news:09**********************************@microsof t.com...
Are you saying that you knew VB.net & GDI+ well, then learn't C# and could

write productively in GDI+ in C# after only a few days!

The only difference between C# and VB .NET is the syntax. For example in VB
.NET, you declare an integer like that: "Dim i as int". In C# it would be:
"int c;".

Everything else is striclty identical as there is no separate API for VB
.NET and C# but they are using the same API. This means that, yes, only a
few days are needed to get used to the syntax changes.


No, everything else is *not* strictly identical. There *are*
differences, although many will disappear with Whidbey.

See http://www.pobox.com/~skeet/csharp/faq/#vb.or.csharp for more
information.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #12
Elp <ro********@REMOVEME.hotmail.com> wrote:
"GraphicsMark" <ma********@bigpond.comREMOVE_THESE_CAPS> wrote in message
news:09**********************************@microsof t.com...
Are you saying that you knew VB.net & GDI+ well, then learn't C# and could

write productively in GDI+ in C# after only a few days!

The only difference between C# and VB .NET is the syntax. For example in VB
.NET, you declare an integer like that: "Dim i as int". In C# it would be:
"int c;".

Everything else is striclty identical as there is no separate API for VB
.NET and C# but they are using the same API. This means that, yes, only a
few days are needed to get used to the syntax changes.


No, everything else is *not* strictly identical. There *are*
differences, although many will disappear with Whidbey.

See http://www.pobox.com/~skeet/csharp/faq/#vb.or.csharp for more
information.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

30
by: Christian Seberino | last post by:
How does Ruby compare to Python?? How good is DESIGN of Ruby compared to Python? Python's design is godly. I'm wondering if Ruby's is godly too. I've heard it has solid OOP design but then...
12
by: GraphicsMark | last post by:
Opinions needed - is VB.net good enough to create a proper vector drawing program with some bitmap processing, i.e. does it have a rich enough feature set, and do the compiled programs run fast...
2
by: Mickey | last post by:
When I try to create a new web application in VS Studio .NET 2003 at a simple default location eg: http://localhost/WebApplication1 I get the following error: Visual Studio .NET cannot create or...
17
by: Mell via AccessMonster.com | last post by:
Is there a way to find out where an application was created from? i.e. - work or home i.e. - if application sits on a (work) server/network, the IT people know the application is sitting...
2
by: John Kotuby | last post by:
Hello all, Note: This is the full version of a Post that I inadvertently sent before it was complete. About a year ago I wrote a VB.NET 2003 solution that consists of a number of assemblies...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.