public void ConcatFormat(IStringRunner sr) { string format="{0} {1}"; string s1 = "myword"; string s2 = "myotherword"; for(int i = 0;i<count;++i) sr.ConcatFormat(format,s1,s2); }
public void Concat(IStringRunner sr) { string s = "myword"; for (int i = 0; i < count; ++i) { sr.Concat(s); } }
public void ConcatFormat(IStringRunner sr) { string format = "{0} {1}"; string s1 = "myword"; string s2 = "myotherword"; for (int i = 0; i < count; ++i) { sr.ConcatFormat(format, s1, s2); } }
public void SetUp(int index, IStringRunner dic) { this.count = CollectionCount(index); }
public void Concat(IStringRunner sr) { string s = "myword"; for(int i = 0;i<count;++i) sr.Concat(s); }