Click or drag to resize

StringUtilsDup Method (String, Int32)

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Create a String which is a duplicate of the specified number of the passed String.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
public static string Dup(
	string text,
	int count
)

Parameters

text
Type: SystemString
The String to fill the new String with.
count
Type: SystemInt32
The number of duplicates to put into the new String.

Return Value

Type: String
A String containing the String text repeated count times.
See Also