StringExtensionsRepeat Method

Repeats a String count times.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 7.2.0
C#
public static string Repeat(
	this string s,
	int count
)

Parameters

s  String
The string to repeat count times.
count  Int32
The count of repeating s. If 0, an empty string is returned. If 1 the original s is returned.

Return Value

String
s repeated count times.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

See Also