- Found in:
- Dylbills PE
Description
Documentation Comment
Sort========================================================================================
if Direct == true, sorts the passed in akArray directly
if Direct == false, Passed in array is unaffected and returns new array (that is akArray sorted).
if Direct == false requires skse to create the new array.
Caveats
Parameters
string[]akArray
boolAscending=true
boolDirect=true
Examples
Auto-Generated Example
string[] myStringArray__akArray
bool myBool__Ascending
bool myBool__Direct
string[] returnedValue = DbMiscFunctions.SortStringArray(myStringArray__akArray, myBool__Ascending, myBool__Direct)