perf: Simpler HasAnyFlags check, some tidying

This commit is contained in:
Chris Cameron
2018-07-25 14:02:14 -04:00
parent 1193c8e3bb
commit b8225b7842
3 changed files with 17 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ namespace ICD.Common.Utils.Collections
get
{
return m_OrderedKeys.Select(k => m_Dictionary[k])
.ToArray(Count);
.ToArray(m_OrderedKeys.Count);
}
}