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

Commit 24bfd4f

Browse files
committed
Merge pull request #2179 from stephentoub/bitconverter_corefx
Switch System.Runtime.Extensions to use BitConverter.cs in corefx
2 parents 8952bad + f453183 commit 24bfd4f

File tree

5 files changed

+198
-143
lines changed

5 files changed

+198
-143
lines changed

src/System.Runtime.Extensions/src/Resources/Strings.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
<value>The parameter '{0}' cannot be an empty string.</value>
137137
</data>
138138
<data name="Arg_ArrayPlusOffTooSmall" xml:space="preserve">
139-
<value>Destination array is not long enough to copy all the items in the collection. Check array index and length.</value>
139+
<value>Array is not long enough. Check array index and length.</value>
140140
</data>
141141
<data name="ArgumentOutOfRange_Index" xml:space="preserve">
142142
<value>Index was out of range. Must be non-negative and less than the size of the collection.</value>

src/System.Runtime.Extensions/src/System.Runtime.Extensions.CoreCLR.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@
2121

2222
<ItemGroup>
2323
<Compile Include="System\Diagnostics\Stopwatch.cs" />
24-
<Compile Include="System\Runtime\Versioning\FrameworkName.cs" />
24+
<Compile Include="System\BitConverter.cs" />
25+
<Compile Include="System\IO\LowLevelTextWriter.cs" />
26+
<Compile Include="System\IO\LowLevelStringWriter.cs" />
2527
<Compile Include="System\Net\WebUtility.cs" />
2628
<Compile Include="System\Net\Configuration\UnicodeDecodingConformance.cs" />
2729
<Compile Include="System\Net\Configuration\UnicodeEncodingConformance.cs" />
28-
<Compile Include="System\IO\LowLevelTextWriter.cs" />
29-
<Compile Include="System\IO\LowLevelStringWriter.cs" />
30+
<Compile Include="System\Runtime\Versioning\FrameworkName.cs" />
3031
</ItemGroup>
3132

3233
<ItemGroup>

0 commit comments

Comments
 (0)