473,382 Members | 1,425 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,382 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 1619
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...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.