本文整理汇总了C#中HeD.Model.List.Sort方法的典型用法代码示例。如果您正苦于以下问题:C# List.Sort方法的具体用法?C# List.Sort怎么用?C# List.Sort使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HeD.Model.List
的用法示例。
在下文中一共展示了List.Sort方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetSortedProperties
private List<PropertyDef> GetSortedProperties()
{
// Poor man's cache refresh, assumes PropertyDefs are immutable, and property lists would only ever be changed by adding xor removing properties,
// resulting in a different number of properties in the cached sorted property list.
if (_sortedProperties != null && (_properties.Count != _sortedProperties.Count))
{
_sortedProperties = null;
}
if (_sortedProperties == null)
{
_sortedProperties = new List<PropertyDef>(_properties);
_sortedProperties.Sort((a, b) => String.Compare(a.Name, b.Name, false, CultureInfo.InvariantCulture));
}
return _sortedProperties;
}