-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Modules using the C# Generator for the following library:
Name: Visual Basic for Applications
Version: 6.0
Base: win32
Path: C:\Windows\SysWow64\MSVBVM60.DLL
appears to not be complete. For example:
%instanceType%
is left at the top of the module, instead of being replaced.
[SupportByVersionAttribute("VBA", 6.0)]
public Int16 Asc(string string)
{
object[] paramsArray = Invoker.ValidateParamsArray(string);
object returnItem = Invoker.MethodReturn(this, "Asc", paramsArray);
return NetRuntimeSystem.Convert.ToInt16(returnItem);
}
this is left in the code and fails to compile as it can't be converted to COMObject type.