Beispiel #1
0
 private bool Equals(LicenseDetails other)
 {
     return(string.Equals(LicenseKey, other.LicenseKey) && string.Equals(Application, other.Application) &&
            Equals(MinVersion, other.MinVersion) && Equals(MaxVersion, other.MaxVersion) &&
            string.Equals(LicensedUserName, other.LicensedUserName) &&
            string.Equals(LicensedUserEmail, other.LicensedUserEmail) && StartDate.Equals(other.StartDate) &&
            EndDate.Equals(other.EndDate) && Equals(CustomValues, other.CustomValues));
 }
Beispiel #2
0
 private bool Equals(LicenseDetails other)
 {
     return string.Equals(LicenseKey, other.LicenseKey) && string.Equals(Application, other.Application) &&
            Equals(MinVersion, other.MinVersion) && Equals(MaxVersion, other.MaxVersion) &&
            string.Equals(LicensedUserName, other.LicensedUserName) &&
            string.Equals(LicensedUserEmail, other.LicensedUserEmail) && StartDate.Equals(other.StartDate) &&
            EndDate.Equals(other.EndDate) && Equals(CustomValues, other.CustomValues);
 }