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

Commit

Permalink
Add String.Join overloads accepting a char separator (#7942)
Browse files Browse the repository at this point in the history
* Add String.Join overloads that accept char separators
  • Loading branch information
jamesqo authored and AlexGhiondea committed Nov 23, 2016
1 parent 7c97820 commit 3f59c07
Show file tree
Hide file tree
Showing 4 changed files with 207 additions and 149 deletions.
4 changes: 4 additions & 0 deletions src/mscorlib/model.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7396,6 +7396,10 @@
<Member Name="IsNormalized(System.Text.NormalizationForm)" />
<Member Name="IsNullOrEmpty(System.String)" />
<Member Name="IsNullOrWhiteSpace(System.String)" />
<Member Name="Join(System.Char,System.Object[])" />
<Member Name="Join&lt;T&gt;(System.Char,System.Collections.Generic.IEnumerable&lt;T&gt;)" />
<Member Name="Join(System.Char,System.String[])" />
<Member Name="Join(System.Char,System.String[],System.Int32,System.Int32)" />
<Member Name="Join(System.String,System.Object[])" />
<Member Name="Join&lt;T&gt;(System.String,System.Collections.Generic.IEnumerable&lt;T&gt;)" />
<Member Name="Join(System.String,System.Collections.Generic.IEnumerable&lt;System.String&gt;)" />
Expand Down
1 change: 0 additions & 1 deletion src/mscorlib/mscorlib.shared.sources.props
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,6 @@
<SystemSources Include="$(BclSourcesRoot)\System\UnitySerializationHolder.cs" />
<SystemSources Include="$(BclSourcesRoot)\System\UnhandledExceptionEventArgs.cs" />
<SystemSources Include="$(BclSourcesRoot)\System\UnhandledExceptionEventHandler.cs" />
<SystemSources Include="$(BclSourcesRoot)\System\UnSafeCharBuffer.cs" />
<SystemSources Include="$(BclSourcesRoot)\System\ValueType.cs" />
<SystemSources Include="$(BclSourcesRoot)\System\Version.cs" />
<SystemSources Include="$(BclSourcesRoot)\System\Void.cs" />
Expand Down
Loading

0 comments on commit 3f59c07

Please sign in to comment.