Example #1
0
    // ------------------------------------------------------------------ 
    // Desc: 
    // ------------------------------------------------------------------ 

    public bool Equals ( exVersion _other ) {
        if ( major != _other.major ||
             minor != _other.minor ||
             patch != _other.patch )
        {
            return false;
        }
        return true;
    }
Example #2
0
    // ------------------------------------------------------------------
    // Desc:
    // ------------------------------------------------------------------

    public bool Equals(exVersion _other)
    {
        if (major != _other.major ||
            minor != _other.minor ||
            patch != _other.patch)
        {
            return(false);
        }
        return(true);
    }