Cleaned up StringBuilder ToString definition overload with optional parameter.

This commit is contained in:
Patrick Magee
2014-05-26 21:43:16 +01:00
parent b77e343551
commit 2c056a113e
+1 -2
View File
@@ -1812,8 +1812,7 @@ declare module Sys {
* (Optional) A string to append between each element of the string that is returned.
* @return A string representation of the StringBuilder instance. If separator is specified, the delimiter string is inserted between each element of the returned string.
*/
toString(separator: string): string;
toString(): string;
toString(separator?: string): string;
//#endregion
}