Unity.IL2CPP.Common.RuntimePlatform.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
        public static bool operator ==(RuntimePlatform left, RuntimePlatform right)
        {
            if (object.ReferenceEquals(left, null) || object.ReferenceEquals(right, null))
            {
                return object.ReferenceEquals(left, right);
            }
            return (left.GetType() == right.GetType());
        }