c# and vb.net integration

  • Thread starter Thread starter blah
  • Start date Start date
B

blah

i'm currently creating the interface for an application in c#. i have to be
able to read/write a certain filetype and my friend is going to write it in
vb.net. is there anything i should know before writing a class in vb.net to
access a certain file format? and will the compiled class be available in
c#?

thanks,
Rob
 
because all .net languages generate IL, there will be no problem. Maybe take
care that the C# - coder don't use datatypes not supported in VB.Net (e.g.
unsigned types).

GP
 
Yes, you can use e.g. System.UInt32, but there are no "build in" unsigned
datatypes (like uint in C#).
 
ahh ok, its in the framework but not the language implementation, you need
to import it.
 
Back
Top