Skip to content

Commit

Permalink
Add dummy fields
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoritzinsky committed Jul 11, 2022
1 parent 1a0aa84 commit 63b2707
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2167,6 +2167,8 @@ public static void Free(TUnmanagedElement* unmanaged) { }

public unsafe ref struct ManagedToUnmanagedIn
{
private object _dummy;
private int _dummyPrimitive;
public static int BufferSize { get { throw null; } }
public void FromManaged(T[]? array, System.Span<TUnmanagedElement> buffer) { }
public System.ReadOnlySpan<T> GetManagedValuesSource() { throw null; }
Expand Down Expand Up @@ -2303,6 +2305,8 @@ public static void Free(TUnmanagedElement* unmanaged) { }

public unsafe ref struct ManagedToUnmanagedIn
{
private object _dummy;
private int _dummyPrimitive;
public static int BufferSize { get { throw null; } }
public void FromManaged(T*[]? array, System.Span<TUnmanagedElement> buffer) { }
public System.ReadOnlySpan<IntPtr> GetManagedValuesSource() { throw null; }
Expand Down

0 comments on commit 63b2707

Please sign in to comment.