CS2JNet.System.ObjectSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.cs2j.dotnet.corlib Show documentation
Show all versions of org.cs2j.dotnet.corlib Show documentation
CS2J Support library (.NET corlib reimplementation)
The newest version!
package CS2JNet.System;
public class ObjectSupport {
public static boolean Equals(Object obj1, Object obj2) {
if (obj1 == null) {
return obj2 == null;
} else {
return obj1.equals(obj2);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy