 | CSTR.IStrins Method (String, Int32, String) |
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
)
public static void IStrins(
ref string dest,
int ins,
string orig
)
Public Shared Sub IStrins (
ByRef dest As String,
ins As Integer,
orig As String
)
Public Shared Sub IStrins (
ByRef dest As String,
ins As Integer,
orig As String
)
public:
static void IStrins(
String^% dest,
int ins,
String^ orig
)
public:
static void IStrins(
String^% dest,
int ins,
String^ orig
)
static member IStrins :
dest : string byref *
ins : int *
orig : string -> unit
static member IStrins :
dest : string byref *
ins : int *
orig : string -> unit
Parameters
- dest
- Type: System.String
Destination String - ins
- Type: System.Int32
Insert Position - orig
- Type: System.String
String to add
Remarks
If the specified position does not fall within the current string
the source string will simply be Concatenated.
See Also