Description
Description
When calling a COM method that has a ref parameter in its signature, omitting ref in the C# method call does not produce a compilation error. However, as a result, the output parameter is not populated correctly. Adding ref in the method call resolves the issue, but the absence of a compilation error can lead to unexpected runtime behavior.
Reproduction Steps
I have an IDL interface:
interface (IIpcExtensionManager, 5f900000-ec6f-4c54-a1bf-6c0b42a78c00) : IUnknown
begin
HRESULT ReloadStorage([in, out] struct TExecuteContext* ExecuteContext);
end;
After converting it to DLL, using TlbImp.exe, I have:
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[ComImport]
public interface IIpcExtensionManager
{
[MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime)]
void ReloadStorage([In, Out] ref TExecuteContext ExecuteContext);
}
And I write .NET application, which calls:
extensionManager.ReloadStorage(TStorageType.stCurrentUser, executeContext);
I understand, that compiler does not make any warning (I did not use ref executeContext), but I expect executeContext will not be empty. I fill it inside calling DLL, but here returns empty structure.
If I write
extensionManager.ReloadStorage(TStorageType.stCurrentUser, ref executeContext);
I will see me text in executeContext, so my DLL works correctly.
Expected behavior
- Compiler warning - should use "ref"
- Filling structure executeContext
Any of this variants will fix the issue, I guess
Actual behavior
No compilation error is produced, leading to runtime behavior where the executeContext remains unmodified if ref is omitted.
Regression?
No response
Known Workarounds
Explicitly adding ref to the method call resolves the issue and ensures executeContext is populated correctly.
Configuration
No response
Other information
No response
Metadata
Metadata
Assignees
Type
Projects
Status
No status