A place to discuss future vb featuresause?

D

Doker

Is there a place where people can give their suggestions to adding new
featers to future releases of vb?
Ex.
DirectCast(obj, typ) makes me crazy!
C# hase the (obj as typ) statement which is shorter and what's more
VB-Style!

People often use and remember CType only because it's shorter then
DirectCast and
(obj As typ).method would be a very vb-friendly style.
 
H

Herfried K. Wagner [MVP]

Doker said:
Is there a place where people can give their suggestions to adding new
featers to future releases of vb?
Ex.
DirectCast(obj, typ) makes me crazy!
C# hase the (obj as typ) statement which is shorter and what's more
VB-Style!

People often use and remember CType only because it's shorter then
DirectCast and
(obj As typ).method would be a very vb-friendly style.

Note that C#'s 'as' corresponds to VB 2005's 'TryCast' operator. Personally
I like VB's cast and conversion operators much more than the way casts are
written in C#, because it doesn't suffer from the brackets hell.
 
C

Carlos J. Quintero [VB MVP]

And this is the moment to send them suggestions because they are working on
the specs. Once the product reaches the Beta 1 likely no new features are
added (just the opposite)
--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio 2005, Visual Studio .NET,
VB6, VB5 and VBA
You can code, design and document much faster in VB.NET, C#, C++ or VJ#
Free resources for add-in developers:
http://www.mztools.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top