 | CSTRIStrins Method (String, Int32, String, Int32) |
This method inserts a string at a specified position.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void IStrins(
ref string dest,
int ins,
string orig,
int size
)
public static void IStrins(
ref string dest,
int ins,
string orig,
int size
)
Public Shared Sub IStrins (
ByRef dest As String,
ins As Integer,
orig As String,
size As Integer
)
Public Shared Sub IStrins (
ByRef dest As String,
ins As Integer,
orig As String,
size As Integer
)
public:
static void IStrins(
String^% dest,
int ins,
String^ orig,
int size
)
public:
static void IStrins(
String^% dest,
int ins,
String^ orig,
int size
)
static member IStrins :
dest : string byref *
ins : int *
orig : string *
size : int -> unit
static member IStrins :
dest : string byref *
ins : int *
orig : string *
size : int -> unit
Parameters
- dest
- Type: SystemString
Destination String - ins
- Type: SystemInt32
Insert Position - orig
- Type: SystemString
String to add - size
- Type: SystemInt32
Size of the Destination String
Remarks
If the specified position does not fall within the current string
the source string will simply be Concatenated.
See Also