Click here to Skip to main content
15,885,952 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
im having a vb.net application and c# sharp application can any one tell me is possible to integrate the 2 things if so, kindly teach me.


regards siv
Posted

They are the same at the DLL level so just reference vb.net in your c# project.
 
Share this answer
 
Comments
resonance_siv 25-Nov-11 9:59am    
sugessted readings pls im a beginner
Sergey Alexandrovich Kryukov 25-Nov-11 16:59pm    
It depends on what you know about .NET and each of those languages. If you know just something basic, this would be enough without any additional reading. It's enough if you know how to create an assembly and reference it in another assembly. This is in the very basic of .NET. If you don't understand it -- you know nothing -- start learning .NET from scratch.
--SA
Sergey Alexandrovich Kryukov 25-Nov-11 17:01pm    
My 5. Please see also my comment to the solution by Manoi.
--SA
Mehdi Gholam 25-Nov-11 23:25pm    
Thanks
RaisKazi 26-Nov-11 2:12am    
Agree. 5ed. Excellence of MSIL.
You can not Add both application together as it is.If you want to add some code or functions then you can make dll(Dynamic link library) file of that cade.after creating dll you can add the reference of that dll into the C# Project
Steps : Right Click on Project In Solution Explorer->Add Reference.

But for that first of all you have to learn how to make Class Library i.e.(DLL).
This is good when you want to refer large quantity if code.
If you want small lines of code then try to convert that code into Vb.Net using Conversion tools.
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 25-Nov-11 17:01pm    
My 4. Class library and DLL is not the same. In .NET, there is no "DLL vs. EXE". It's the same thing -- assembly, and each assembly, even EXE can be referenced exactly as DLL (did you know that?). OP needs to learn what assembly is.
--SA
Manoj K Bhoir 26-Nov-11 11:16am    
Thanx SAKryukov.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900