Text Function that extracts the errors from an operation resultant string
* lkString
|
string
|
|
text string on which you are going to extract
|
.NET Framework, Core & Mono C#
string[] result = DataFunctions.GetErrorsFromLkString(lkString);
|
.NET Framework, Core & Mono VB
Dim result() As String = DataFunctions.GetErrorsFromLkString(lkString)
|
String[] result = DataFunctions.GetErrorsFromLkString(lkString);
|
int count;
char** result = LkGetErrorsFromLkString(lkString, &count);
|