Schemin.AST.ScheminPort.Equal C# (CSharp) Method

Equal() public method

public Equal ( IScheminType type ) : bool
type IScheminType
return bool
        public bool Equal(IScheminType type)
        {
            if (type == this)
            {
                return true;
            }

            return false;
        }