Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

StringBuilder.AppendJoin (appending lists to StringBuilder) #8303

Closed
AlexRadch wants to merge 4 commits into
dotnet:masterfrom
AlexRadch:StringBuilder.AppendJoin
Closed

StringBuilder.AppendJoin (appending lists to StringBuilder) #8303
AlexRadch wants to merge 4 commits into
dotnet:masterfrom
AlexRadch:StringBuilder.AppendJoin

Conversation

@AlexRadch
Copy link
Copy Markdown

Implement StringBuilder.AppendJoin API. See https://github.com/dotnet/corefx/issues/3419

using System.Threading;
using System.Globalization;
using System.Diagnostics.Contracts;
using Collections.Generic;
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why does this using not follow the same convention as the previous ones, i.e. to include System even when it's not necessary?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry I do not fully understand. It should be changed to

using Collections;
using Collections.Generic;

Or what?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, I meant changing it to:

using System.Collections.Generic;

All the old usings do that.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I changed

@AlexRadch
Copy link
Copy Markdown
Author

I recreated repository fork so I created new PR #8350 with the same.

@AlexRadch AlexRadch closed this Nov 29, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants