vb with c#

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i have vb project in visual studio 2003 and i want to add exsisting C# file
to my Project.
my Question is if i can do it and if its possible ?
 
No you cant to add the c# file to the vb project (as far as i know). But you
can create a new project for the c# file compile it and then add a reference
to the dll in the vb project.
 
hello'
thank for your Answer'
i need direct Answer it's Very importent to me to Know,
How to continue With my Project !!!
 
Igave you an answer. Make a new c# project for your c# project and compile.
Then add a reference to the dll in your vb project. You will be able to
access your c#class this way.
 
C# is easily converted to VB. Google on the various C# to VB converters (our
demo may be sufficient if you're happy doing 100 line snippets at a time).
--
David Anton
www.tangiblesoftwaresolutions.com
Instant C#: VB.NET to C# Converter
Instant VB: C# to VB.NET Converter
Instant C++: C# to C++ Converter
Instant J#: VB.NET to J# Converter
 
You can use csc.exe (command line visual C# Compiler) to create dll file and
add the dll to your VB Project References.

HTH

Elton Wang
 

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

Back
Top