 | CSTRIiCharN Method |
Returns the ASCII value of the n'th character.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static int IiCharN(
string str_val,
int c,
int max
)
public static int IiCharN(
string str_val,
int c,
int max
)
Public Shared Function IiCharN (
str_val As String,
c As Integer,
max As Integer
) As Integer
Public Shared Function IiCharN (
str_val As String,
c As Integer,
max As Integer
) As Integer
public:
static int IiCharN(
String^ str_val,
int c,
int max
)
public:
static int IiCharN(
String^ str_val,
int c,
int max
)
static member IiCharN :
str_val : string *
c : int *
max : int -> int
static member IiCharN :
str_val : string *
c : int *
max : int -> int
Parameters
- str_val
- Type: SystemString
String - c
- Type: SystemInt32
Character to get - max
- Type: SystemInt32
Maximum string length (unused)
Return Value
Type:
Int32
ASCII value of n'th character in string.
The first character is 0.
See Also