GeometryClassLibrary.MatricesMatrix.operator C# (CSharp) Method

operator() public static method

Returns true if each matricesMatrix is the same as the other
public static operator ( ) : bool
return bool
        public static bool operator ==(MatricesMatrix matricies1, MatricesMatrix matricies2)
        {
            if ((object)matricies2 == null)
            {
                if ((object)matricies2 == null)
                {
                    return true;
                }
                return false;
            }
            return matricies2.Equals(matricies2);
        }