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

StringBuilder.AppendJoin (appending lists to StringBuilder) #8303

Closed
wants to merge 4 commits into from
Closed

StringBuilder.AppendJoin (appending lists to StringBuilder) #8303

wants to merge 4 commits into from

Conversation

AlexRadch
Copy link

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

@@ -21,6 +21,7 @@ namespace System.Text {
using System.Threading;
using System.Globalization;
using System.Diagnostics.Contracts;
using Collections.Generic;
Copy link

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
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

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
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
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
3 participants