mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
WIP Lib version 2.39.1
This commit is contained in:
@@ -352,6 +352,13 @@ namespace ModernKeePassLib.Collections
|
||||
m_vObjects.Sort(tComparer);
|
||||
}
|
||||
|
||||
public void Sort(Comparison<T> tComparison)
|
||||
{
|
||||
if(tComparison == null) throw new ArgumentNullException("tComparison");
|
||||
|
||||
m_vObjects.Sort(tComparison);
|
||||
}
|
||||
|
||||
public static PwObjectList<T> FromArray(T[] tArray)
|
||||
{
|
||||
if(tArray == null) throw new ArgumentNullException("tArray");
|
||||
|
Reference in New Issue
Block a user