A place to discuss future vb featuresause?

  • Thread starter Thread starter Doker
  • Start date Start date
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.
 
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.
 
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
 
Back
Top