http://qs321.pair.com?node_id=686073


in reply to Re: Calling .NET Assemblies with Win32::OLE
in thread Calling .NET Assemblies with Win32::OLE

There is no need to put the assembly in GAC for perl to use it. While registering using regasm.exe use the option /codebase.
e.g.  regasm hello.dll /codebase
Then perl will take the library from the path where it is.

Replies are listed 'Best First'.
Re^3: Calling .NET Assemblies with Win32::OLE
by Anonymous Monk on Jun 24, 2011 at 05:12 UTC
    Thanks that worked...!!!