UnityEngine.Object.CompareBaseObjects C# (CSharp) Method

CompareBaseObjects() private static method

private static CompareBaseObjects ( System lhs, System rhs ) : bool
lhs System
rhs System
return bool
		private static bool CompareBaseObjects(System.Object lhs, System.Object rhs){}
		public int GetInstanceID(){}

Usage Example

コード例 #1
0
        public override bool Equals(object other)
        {
            Object @object = other as Object;
            bool   flag    = @object == null && other != null && !(other is Object);

            return(!flag && Object.CompareBaseObjects(this, @object));
        }
All Usage Examples Of UnityEngine.Object::CompareBaseObjects