DFAUnpackEncodedString Method |
Given a String that has a run-length-encoding of some unsigned shorts
like "\1\2\3\9", convert to short[] {2,9,9,9}. We do this to avoid
static short[] which generates so much init code that the class won't
compile. :(
Namespace:
Stimulsoft.Data.Expressions.Antlr.Runtime
Assembly:
Stimulsoft.Data (in Stimulsoft.Data.dll) Version: 2019.3.1.0
Syntaxpublic static short[] UnpackEncodedString(
string encodedString
)
Public Shared Function UnpackEncodedString (
encodedString As String
) As Short()
Parameters
- encodedString
- Type: SystemString
[Missing <param name="encodedString"/> documentation for "M:Stimulsoft.Data.Expressions.Antlr.Runtime.DFA.UnpackEncodedString(System.String)"]
Return Value
Type:
Int16[Missing <returns> documentation for "M:Stimulsoft.Data.Expressions.Antlr.Runtime.DFA.UnpackEncodedString(System.String)"]
See Also