Fix the Revolving Buffers tests failures by explicitly using the function.

This commit is contained in:
Yang Lyu 2017-05-15 11:38:12 -07:00
Родитель 5b8d457c12
Коммит 783375534d
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -18,4 +18,8 @@
<PackageReference Include="xunit" Version="$(XunitVersion)" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
</Project>

Просмотреть файл

@ -560,7 +560,7 @@ namespace Microsoft.VisualStudio.Web.BrowserLink
private static string GetString(ArraySegment<char> arraySegment)
{
return new string(arraySegment.ToArray());
return new string(Enumerable.ToArray(arraySegment));
}
}
}