RickStrahl / wwDotnetBridge

.NET Interop for Visual FoxPro made easy
http://west-wind.com/wwDotnetBridge.aspx
73 stars 35 forks source link

StringUtils.cs line 88 small bug #24

Closed zdenekkrejci closed 1 year ago

zdenekkrejci commented 3 years ago

public static string Replicate(string input, int charCount) { return new StringBuilder().Insert(0, "input", charCount).ToString(); } It should be probably wihtout "input" wihtout qutotation marks here return new StringBuilder().Insert(0, input, charCount).ToString();

RickStrahl commented 1 year ago

Duh. Thanks. Fixed .

Better late than never :smile: