StringExtensionsRepeat Method
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 7.2.0
public static string Repeat(
this string s,
int count
)
<ExtensionAttribute>
Public Shared Function Repeat (
s As String,
count As Integer
) As String
public:
[ExtensionAttribute]
static String^ Repeat(
String^ s,
int count
)
[<ExtensionAttribute>]
static member Repeat :
s : string *
count : int -> string
- 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.
Strings repeated
count times.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).