Click or drag to resize
BackingFieldUtilityIntKeyMode Enumeration
A mode specifying how duplicate Int32 keys should be handled.

Namespace: Candlelight
Assembly: Assembly-CSharp-firstpass (in Assembly-CSharp-firstpass.dll) Version: 0.0.0.0
Syntax
C#
public enum IntKeyMode
Members
  Member nameValueDescription
Increment0 Later entries of duplicate keys should be incremented until they are unique.
SetToZero1 Layer entries of duplicate keys should be zet to 0. Only the first 0-keyed entry will be retained. Use this mode for keys that should not logically be incremented, such as hash codes.
See Also