Skip to content

Marshal.PtrToStructure<>() Doesn't work for inherited fields #113970

Open
@ThaDaVos

Description

@ThaDaVos

Description

Taking below declarations, when using Marshal.PtrToStructure<>(), the fields from the base record aren't filled, adding to that, the StructLayoutAttribute is not inherited (no problem, just stating), throwing an error that the size could not be determined (giving a hint it doesn't see the fields) - I also tried setting the fields to protected and public/internal:

[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Ansi)]
public record A<T> where T : struct
{
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]
    private string name;
    public string Name => name;

    private T value;
    public T Value => value;
}

public struct BValues
{
    public int x;
    public int y;
    public int z;
}

[StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Ansi)]
public record B : A<BValues>
{

}

Reproduction Steps

Please see the given code snippet above

Expected behavior

I expected the fields from the base class to be marshalled/filled first, or at least, filled at all

Actual behavior

They stay empty

Regression?

No response

Known Workarounds

Changing the fields to be private, making the properties virtual and re-implementing the logic - defeating the purpose of the base class except methods - so moving the field/properties to each subrecord

Configuration

  • Which version of .NET is the code running on?
    Dotnet Version: 9.0.104
  • What OS and version, and what distro if applicable?
    Windows 11 24h2
  • What is the architecture (x64, x86, ARM, ARM64)?
    x86-windows
  • Do you know whether it is specific to that configuration?
    Not sure, it's a interop project for Clarion with NativeAoT
  • If you're using Blazor, which web browser(s) do you see this issue in?
    No

Other information

No response

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    • Status

      No status

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions