VB.NET 2010, .NET 4

Hello,

I would like to do (something like) the following:

\#Const T = "Byte()"

Public Class MyClass
  Inherits SomeGenericClass(Of T)

  .. other code ..
End Class

And have it act the same as if I'd typed

Public Class MyClass
  Inherits SomeGenericClass(Of Byte())

  .. other code ..
End Class

It's not so much that i have to do it this way, I'm just curious if such a thing is possible.

Thanks in advance!

Brian

link|improve this question

How did a C programmer end up writing VB.NET code? Of course this doesn't work. It never will. Ever. – Hans Passant Feb 10 '11 at 1:18
Okay, I can accept that. Is it possible to elaborate on why? I just want to understand. – Brian Mulcahy Feb 10 '11 at 1:20
feedback

2 Answers

up vote 2 down vote accepted

No, this is not possible. The Visual Basic and C# designers decided not to allow a C-like preprocessor, because they felt it led to a lot of errors and confusion. It is very easy to write C macros that behave in unintended ways, and the VB and C# designers felt that safety for a broad range of developers took priority. Therefore defines in VB and C# are only 'defined' or 'undefined' rather than having values.

Eric Gunnerson discusses this from a C# perspective here, and I think the design reasoning for VB.NET was essentially the same.

link|improve this answer
Thanks for the insight. – Brian Mulcahy Feb 10 '11 at 2:31
feedback

You only have: #Const #If #Else #Endif But, you can use another program to generate the code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.