ordinal key comparer

This commit is contained in:
Masataka SUMI 2023-08-16 23:01:28 +09:00
parent 9574c15966
commit 96d819f0c6

View File

@ -156,7 +156,7 @@ namespace UniVRM10
if (Preset != other.Preset) return false;
if (Preset != ExpressionPreset.custom) return true;
return Name == other.Name;
return Name.Equals(other.Name, StringComparison.Ordinal);
}
public override bool Equals(object obj)