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

◆ Equals()

override bool System.ComponentModel.RunInstallerAttribute.Equals ( [NotNullWhen(true)] object? obj)
inline

Definition at line 21 of file RunInstallerAttribute.cs.

22 {
23 if (obj == this)
24 {
25 return true;
26 }
27 if (obj is RunInstallerAttribute runInstallerAttribute)
28 {
29 return runInstallerAttribute.RunInstaller == RunInstaller;
30 }
31 return false;
32 }

References System.obj, and System.ComponentModel.RunInstallerAttribute.RunInstaller.

Referenced by System.ComponentModel.RunInstallerAttribute.IsDefaultAttribute().