Possible duplicate:Using VB6 class in C #
I have egnine serialization written in VB6 that does binary serialization in some mysterious way, I did not understand. I also have a C # program that should serialize in the same way as VB6 code.
Therefore, I wanted to make VB6 serialization code in a DLL and use it in a C # program so that binary serialization matches. How can i do this?
VB6 classes are COM objects, and C # can use them through COM-interop.
Define a VB project to build the COM server in the process, and then add it to the C # project as a COM reference.
Source: https://habr.com/ru/post/1369521/More articles:Search for Eclipse Project - eclipseHow to check if Dojo / Javascript tree is working, lazy loading? - javascriptClientRect semantics from getClientRects in webkit browsers - javascripttext-rotation - problem with IE - cssCreate facebook tab only for my company page - facebookIs there an equivalent to JFrame.getBounds that only gets the real client area? - javaCmake on mac os x, full path link libraries - linkerHow to change keys in normal Vim mode, and not just reassign them? - vimHow can you specify the ant build file to recursively add all files to the bin directory in jarfile? - jarHTTP streaming to Heroku with Rails 3.1 and Unicorn - ruby-on-rails-3.1All Articles