Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Equals() [1/3]

bool System.Runtime.Versioning.FrameworkName.Equals ( [NotNullWhen(true)] FrameworkName? other)
inline

Definition at line 38 of file FrameworkName.cs.

39 {
40 if ((object)other == null)
41 {
42 return false;
43 }
44 if (Identifier == other.Identifier && Version == other.Version)
45 {
46 return Profile == other.Profile;
47 }
48 return false;
49 }
Version(int major, int minor, int build, int revision)
Definition Version.cs:47

References System.Version.Version(), System.Runtime.Versioning.FrameworkName.Identifier, System.other, and System.Runtime.Versioning.FrameworkName.Profile.