System.Runtime.InteropServices.ArrayWithOffset.Equals C# (CSharp) Method

Equals() public method

public Equals ( ArrayWithOffset obj ) : bool
obj ArrayWithOffset
return bool
        public bool Equals(ArrayWithOffset obj)
        {
            return obj.m_array == m_array && obj.m_offset == m_offset && obj.m_count == m_count;
        }
    

Same methods

ArrayWithOffset::Equals ( Object obj ) : bool