ShaderTools.Hlsl.Symbols.IndexerSymbol.Equals C# (CSharp) Method

Equals() private method

private Equals ( IndexerSymbol other ) : bool
other IndexerSymbol
return bool
        private bool Equals(IndexerSymbol other)
        {
            return base.Equals(other) && IndexType.Equals(other.IndexType) && ValueType.Equals(other.ValueType) && ReadOnly == other.ReadOnly;
        }

Same methods

IndexerSymbol::Equals ( object obj ) : bool