473,396 Members | 1,914 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,396 software developers and data experts.

UI development: C# vs. VB.NET

For UI development we need ideas to help us choose the
preferred language (C# or VB.Net).

Earlier with Visual Studio 6, VB used to be the preferred
option for UI development and also for rapid prototyping.
Though some people did use C++ (ATL/MFC) for UI
development - it was almost always more laborious than
development in VB6.

As far as familiarity with syntax is concerned - people in
our team have exposure to both C++ and VB6 and hence on
that front we'd give equal points to C# and VB.net.

Can anyone give ideas (and experiences) if VB.Net would
still be preferable ever Visual C# for UI development?

Jul 21 '05 #1
9 1512
C# as there are less of COBOL type keywords to get in the way. Its not only
propriety its also too wordy and that hides the actual codes meaning.

"Olivier Gautier" <an*******@discussions.microsoft.com> wrote in message
news:02****************************@phx.gbl...
For UI development we need ideas to help us choose the
preferred language (C# or VB.Net).

Earlier with Visual Studio 6, VB used to be the preferred
option for UI development and also for rapid prototyping.
Though some people did use C++ (ATL/MFC) for UI
development - it was almost always more laborious than
development in VB6.

As far as familiarity with syntax is concerned - people in
our team have exposure to both C++ and VB6 and hence on
that front we'd give equal points to C# and VB.net.

Can anyone give ideas (and experiences) if VB.Net would
still be preferable ever Visual C# for UI development?

Jul 21 '05 #2
I'd pick the language you are using for your non-ui work (assuming it's one
of C# or VB.Net). It makes life much easier for your team if they don't have
to keep switching from one language to another.

Colin

"Olivier Gautier" <an*******@discussions.microsoft.com> wrote in message
news:02****************************@phx.gbl...
For UI development we need ideas to help us choose the
preferred language (C# or VB.Net).

Earlier with Visual Studio 6, VB used to be the preferred
option for UI development and also for rapid prototyping.
Though some people did use C++ (ATL/MFC) for UI
development - it was almost always more laborious than
development in VB6.

As far as familiarity with syntax is concerned - people in
our team have exposure to both C++ and VB6 and hence on
that front we'd give equal points to C# and VB.net.

Can anyone give ideas (and experiences) if VB.Net would
still be preferable ever Visual C# for UI development?

Jul 21 '05 #3
> Can anyone give ideas (and experiences) if VB.Net would
still be preferable ever Visual C# for UI development?

Both C# and VB.NET use the same form editor and they are
more or less the same in respect of ui.
I would go with the one that your developers feel is better
for non-ui work.
I would go with C# for two reasons:
- C# is closer to C++ than VB.NET is to VB6
- C# seems to be the language "mapping" better to the undelying
MS byte-code, was created for this.
VB.NET seems to me a little "twisted" to make it closer to VB.
There are things you can't even do or use from VB NET
(for instance define your own = operator).
--
Mihai
-------------------------
Replace _year_ with _ to get the real email
Jul 21 '05 #4
C# was designed from the outset as a .NET language, VB.NET on the other hand
maintains some baggage left over from earlier versions of the language.

Its C# or the road for me ;)

- Doug

"Olivier Gautier" <an*******@discussions.microsoft.com> wrote in message
news:02****************************@phx.gbl...
For UI development we need ideas to help us choose the
preferred language (C# or VB.Net).

Earlier with Visual Studio 6, VB used to be the preferred
option for UI development and also for rapid prototyping.
Though some people did use C++ (ATL/MFC) for UI
development - it was almost always more laborious than
development in VB6.

As far as familiarity with syntax is concerned - people in
our team have exposure to both C++ and VB6 and hence on
that front we'd give equal points to C# and VB.net.

Can anyone give ideas (and experiences) if VB.Net would
still be preferable ever Visual C# for UI development?

Jul 21 '05 #5
VB is like Java, PROPRIETY, C# is STANDARD, you chose where you want to be
locked up.

"Doug Holland" <do**********@precisionobjects.com> wrote in message
news:#A**************@TK2MSFTNGP12.phx.gbl...
C# was designed from the outset as a .NET language, VB.NET on the other hand maintains some baggage left over from earlier versions of the language.

Its C# or the road for me ;)

- Doug

"Olivier Gautier" <an*******@discussions.microsoft.com> wrote in message
news:02****************************@phx.gbl...
For UI development we need ideas to help us choose the
preferred language (C# or VB.Net).

Earlier with Visual Studio 6, VB used to be the preferred
option for UI development and also for rapid prototyping.
Though some people did use C++ (ATL/MFC) for UI
development - it was almost always more laborious than
development in VB6.

As far as familiarity with syntax is concerned - people in
our team have exposure to both C++ and VB6 and hence on
that front we'd give equal points to C# and VB.net.

Can anyone give ideas (and experiences) if VB.Net would
still be preferable ever Visual C# for UI development?


Jul 21 '05 #6
In article <eZ**************@TK2MSFTNGP11.phx.gbl>,
alvin.bruney@.telia.com. says...
C# as there are less of COBOL type keywords to get
in the way. Its not only propriety its also too
wordy and that hides the actual codes meaning.


Espeshully if yew cant type good...
Jul 21 '05 #7
md
Which is clearer as to the meaning: End If or } ?

"Guinness Mann" <GM***@Dublin.com> wrote in message
news:MP************************@msnews.microsoft.c om...
In article <eZ**************@TK2MSFTNGP11.phx.gbl>,
alvin.bruney@.telia.com. says...
C# as there are less of COBOL type keywords to get
in the way. Its not only propriety its also too
wordy and that hides the actual codes meaning.


Espeshully if yew cant type good...

Jul 21 '05 #8
md <no@spam.sux> wrote:
Which is clearer as to the meaning: End If or } ?


To anyone who can read C#, which isn't hard, they're just as readable
as each other. Tell me, which is easier to understand:

(5+2) * 3

or

five plus two, all in brackets, then times three

? Symbols aren't always harder to read than words, and arguably by
making things like structure (which are also typically shown to humans
by indentation; the brace is mostly for the compiler) it makes the
"more important" things like actual executed code more obvious.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #9
Its really not a question in my mind as to which syntax is clearer, End If
or '}' ...

C# developers typically come from those who learned their skills using C and
C++ and as such are typically more experiacned and higher educated in this
field than many programmers who use VB to write their programs.

I have seen some very good code written in VB, the language is not deficient
.... but the chance of you hiring developers who write very well structured
code which will stand the tests of time is increased with C# due to the
background of most C# programmers.

Doug

"md" <no@spam.sux> wrote in message
news:uN****************@TK2MSFTNGP09.phx.gbl...
Which is clearer as to the meaning: End If or } ?

"Guinness Mann" <GM***@Dublin.com> wrote in message
news:MP************************@msnews.microsoft.c om...
In article <eZ**************@TK2MSFTNGP11.phx.gbl>,
alvin.bruney@.telia.com. says...
C# as there are less of COBOL type keywords to get
in the way. Its not only propriety its also too
wordy and that hides the actual codes meaning.


Espeshully if yew cant type good...


Jul 21 '05 #10

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

Similar topics

1
by: VB | last post by:
iTechArt Group - Custom Software Development and Offshore outsourcing Company http://www.itechart.com/ Offshore custom software development company iTechArt - Web site and Content Management...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.