Opened on Feb 17, 2014 at 4:32:33 PM
Last modified on Mar 12, 2021 at 4:28:17 PM
#2653 new Feature Request
ObjCreate with arguments
| Reported by: | chesstiger (autoit.de) | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | Severity: | None | |
| Keywords: | com objcreate | Cc: |
Description
Hello,
I just want to create COM objects with non-empty constructors. An example:
If I want to create a System.Collections.BitArray object ( http://msdn.microsoft.com/de-de/library/system.collections.bitarray(v=vs.110).aspx ), I have to use one of the following constructors:
- BitArray(BitArray)
- BitArray(Boolean[])
- BitArray(Byte[])
- BitArray(Int32)
- BitArray(Int32[])
- BitArray(Int32, Boolean)
You see, each of them have at least one argument. But ObjCreate doesn't support more than zero arguments.
So, this is a request for implementing arguments for object constructors for ObjCreate.
chesstiger
PS: I know... My English skills are horrible.
