Beispiel #1
0
    public void CreateEmptyFromEmptyArray()
    {
        using var array = new InterfaceArray <CppObject>();

        Assert.Empty(array);
        Assert.Equal(0, array.Length);
    }
Beispiel #2
0
 public InterfaceArrayDebugView(InterfaceArray <T> array) => Items = array._values;