Working with c# and vb.net at the same time

  • Thread starter Thread starter erdem
  • Start date Start date
E

erdem

hi,

is it possible to work with both c# and vb.net at codebehind under same
project. (some pages uses c# others uses vb.net but they are under same
solution) OR Does it cause any problems?

regards

Erdem KEMER,
 
by the way
i mean technically answer is yes this is possible ( i know that)
but
i am concerned about problems that may happen in future because of this
subject....

regards
 
I haven't run across any problems as of yet.

They both compile to MSIL and both use the same data types etc.

I'm sure you know that you cannot mix them both in the same code file but in
the same solution should cause you no issues.
 
Back
Top