| c# Programming Glossary: regasmHow do I call a .NET assembly from C/C++? http://stackoverflow.com/questions/106033/how-do-i-call-a-net-assembly-from-c-c  Serialize  public void Unserialize  After that you need to regasm your assembly. Regasm will add the necessary registry entries.. 
 Create COM/ActiveXObject in C#, use from JScript, with simple event http://stackoverflow.com/questions/11175145/create-com-activexobject-in-c-use-from-jscript-with-simple-event   return ok Compile that all together register it with regasm NET64 regasm.exe Cheeso.Greet.dll register codebase ...And then.. ok Compile that all together register it with regasm NET64 regasm.exe Cheeso.Greet.dll register codebase ...And then use it from.. 
 A Simple C# DLL - how do I call it from Excel, Access, VBA, VB6? http://stackoverflow.com/questions/1170794/a-simple-c-sharp-dll-how-do-i-call-it-from-excel-access-vba-vb6  To install the dll on another machine you need to use regasm. To then consume this Dim o Set o CreateObject TestDll.Test.. 
 Accessing a .NET Assembly from classic ASP http://stackoverflow.com/questions/520165/accessing-a-net-assembly-from-classic-asp  registered the assembly TestAssembly.dll using gacutil and regasm as instructed in the article Replacing Old Classic ASP COM Components.. 
 Developing Internet Explorer Extensions? http://stackoverflow.com/questions/5643819/developing-internet-explorer-extensions  ex.Message  return 0  #endregion #region Registering with regasm public static string RegBHO Software Microsoft Windows CurrentVersion.. 
 How to call C# DLL function from VBScript http://stackoverflow.com/questions/769332/how-to-call-c-sharp-dll-function-from-vbscript  to expose only a single type . Next you register it with regasm codebase MyAssembly.dll and finally call it from VBScript dim.. 
 |