HelperStringMultiply Method |
String Multiply. Build a string by concatenating copies of the input string.
Namespace: Bio.UtilAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public static string StringMultiply(
string str,
int count
)
Public Shared Function StringMultiply (
str As String,
count As Integer
) As String
public:
static String^ StringMultiply(
String^ str,
int count
)
static member StringMultiply :
str : string *
count : int -> string
Parameters
- str
- Type: SystemString
The string to multiply. - count
- Type: SystemInt32
The number of copies wanted.
Return Value
Type:
StringThe multiplied string.
See Also