UITable.SortByName C# (CSharp) Method

SortByName() static protected method

Function that sorts items by name.
static protected SortByName ( Transform a, Transform b ) : int
a Transform
b Transform
return int
	static protected int SortByName (Transform a, Transform b) { return string.Compare(a.name, b.name); }