Click here to Skip to main content
15,892,199 members

Comments by vnmatt (Top 4 by date)

vnmatt 24-Nov-10 7:41am View    
Deleted
Here's a couple more from my own project (MBG Extensions Library):

public static StringBuilder Append(this StringBuilder stringBuilder, params string[] values)
{
foreach (string value in values)
{
stringBuilder.Append(value);
}
return stringBuilder;
}
public static StringBuilder Append(this StringBuilder stringBuilder, params object[] values)
{
foreach (object value in values)
{
stringBuilder.Append(value);
}
return stringBuilder;
}

Maybe you will find them useful :-)
vnmatt 24-Nov-10 7:39am View    
Deleted
Thich nhieu lam! Cam on! Have a five! ;-)
vnmatt 24-Oct-10 2:26am View    
Thanks. Because I didn't see a "Pending" status anywhere like when writing articles, I guess I thoguht it didn't go through the same process. :-D Silly me! Thanks :-)
vnmatt 23-Oct-10 23:03pm View    
Thanks Sandeep! :-)