Opc.Ua.ServiceResult.LookupString C# (CSharp) Method

LookupString() private static method

Looks up a string in a string table.
private static LookupString ( IList stringTable, int index ) : string
stringTable IList
index int
return string
        private static string LookupString(IList<string> stringTable, int index)
        {
            if (index < 0 || stringTable == null || index >= stringTable.Count)
            {
                return null;
            }

            return stringTable[index];
        }
        #endregion