 | CSTRIiCharN Method |
Returns the ASCII value of the n'th character.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static int IiCharN(
CGXNETCore gxNetShared,
string str_val,
int c,
int max
)
public static int IiCharN(
CGXNETCore gxNetShared,
string str_val,
int c,
int max
)
Public Shared Function IiCharN (
gxNetShared As CGXNETCore,
str_val As String,
c As Integer,
max As Integer
) As Integer
Public Shared Function IiCharN (
gxNetShared As CGXNETCore,
str_val As String,
c As Integer,
max As Integer
) As Integer
public:
static int IiCharN(
CGXNETCore^ gxNetShared,
String^ str_val,
int c,
int max
)
public:
static int IiCharN(
CGXNETCore^ gxNetShared,
String^ str_val,
int c,
int max
)
static member IiCharN :
gxNetShared : CGXNETCore *
str_val : string *
c : int *
max : int -> int
static member IiCharN :
gxNetShared : CGXNETCore *
str_val : string *
c : int *
max : int -> int
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - 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