System.Runtime.InteropServices.ArrayWithOffset
namespace System.Runtime.InteropServices
{
public struct ArrayWithOffset
{
public ArrayWithOffset(object array, int offset);
public bool Equals(ArrayWithOffset obj);
public object GetArray();
public int GetOffset();
public static bool operator ==(ArrayWithOffset a, ArrayWithOffset b);
public static bool operator !=(ArrayWithOffset a, ArrayWithOffset b);
}
}