 | CSTRiStrcmp Method |
This method compares two strings and returns these values
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static int iStrcmp(
CGXNETCore gxNetShared,
string first,
string second,
int case_sensitive
)
public static int iStrcmp(
CGXNETCore gxNetShared,
string first,
string second,
int case_sensitive
)
Public Shared Function iStrcmp (
gxNetShared As CGXNETCore,
first As String,
second As String,
case_sensitive As Integer
) As Integer
Public Shared Function iStrcmp (
gxNetShared As CGXNETCore,
first As String,
second As String,
case_sensitive As Integer
) As Integer
public:
static int iStrcmp(
CGXNETCore^ gxNetShared,
String^ first,
String^ second,
int case_sensitive
)
public:
static int iStrcmp(
CGXNETCore^ gxNetShared,
String^ first,
String^ second,
int case_sensitive
)
static member iStrcmp :
gxNetShared : CGXNETCore *
first : string *
second : string *
case_sensitive : int -> int
static member iStrcmp :
gxNetShared : CGXNETCore *
first : string *
second : string *
case_sensitive : int -> int
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - first
- Type: SystemString
String A - second
- Type: SystemString
String B - case_sensitive
- Type: SystemInt32
<define>STR_CASE</define>
Return Value
Type:
Int32
A < B -1
A == B 0
A > B 1
See Also