summaryrefslogtreecommitdiff
path: root/src/mscorlib/shared
AgeCommit message (Expand)AuthorFilesLines
2018-05-08Rename mscorlib to System.Private.Corelib (#17926)Maryam Ariyan771-175584/+0
2018-05-08Partial implementation of Thread.GetApartmentState (dotnet/corert#5781)Jan Kotas1-0/+2
2018-05-08Move ConcurrentExclusiveSchedulerPair to shared CoreLib partition (#17914)Jan Kotas2-0/+751
2018-05-07Speed up Array.Reverse by using ref reassignment (#17891)Levi Broderick1-9/+13
2018-05-05Delete unnecessary internal layer of Span globalization helpers (#17890)Jan Kotas6-246/+88
2018-05-02typo (#17867)Bernie FitzGerald1-2/+2
2018-05-02Clarifying comment on overflow (#17865)Dan Moseley1-0/+3
2018-05-02Fix faulty assert in Utilities.SelectBucketIndex (#17863)Stephen Toub1-1/+1
2018-05-01remove duplicatesMarco Rossignoli3-4/+9
2018-04-28Delete unnecessary caches (dotnet/corefx#29392)Jan Kotas1-4/+1
2018-04-27Fix Number.ParseNumber to not assume '\0' at the end of a span (#17808)Stephen Toub1-26/+35
2018-04-25Fix AsyncLocal<class> changed event to not be raised multiple times for one c...Koundinya Veluri2-50/+71
2018-04-24Move Hashtable & friends to shared parition (#17316)Viktor Hofer7-28/+1808
2018-04-20Fix getting the Absolute path while looking up the TZ files (#17711)Tarek Mahmoud Sayed1-2/+2
2018-04-20Preserve pinned flag in {ReadOnly}Memory<T>.Slice (dotnet/corefx#29246) (#17712)dotnet bot2-7/+19
2018-04-20Update xml comment for {ReadOnly}Memory.Pin method (dotnet/corefx#29137) (#17...dotnet bot2-8/+34
2018-04-18Tweak order of interface declarations on string (#17660)Jan Kotas1-1/+1
2018-04-18Fix reading Time zone rules using Julian days (#17635)Tarek Mahmoud Sayed1-33/+106
2018-04-17Adding failing string to Boolean and TimeSpan parse failure exceptions (#15661)Szabolcs Dézsi2-89/+127
2018-04-16Dict: Use Ref Local Reassignment (C# 7.3) (#17483)Ben Adams1-7/+3
2018-04-16Update xml comment for {ReadOnly}Memory.Pin method (dotnet/corefx#29137) (#17...dotnet bot2-2/+8
2018-04-16Update KoreanLunisolarCalendar.cs (#17542)elyoh1-1146/+1143
2018-04-13Fix default style argument to Double/Single/Decimal.Parse (#17556)Stephen Toub2-2/+2
2018-04-13Collapse leftover AsSpan().Slice(...) into AsSpan(...) (#29078)Ahson Khan1-1/+1
2018-04-12Remove CreateFromPinnedArray from Memory (moved to MemoryMarshal) (#17532)Ahson Khan1-31/+0
2018-04-12Use string.IsNullOrEmpty to eliminate bounds check to first char (#17512)Ben Adams1-1/+7
2018-04-11Some cleanup for ArrayPool trimming (#17518)Jeremy Kuhne2-18/+31
2018-04-11Remove MemoryManager.Length (#17498)Ben Adams2-18/+51
2018-04-11Fix CoreRT build breaksJan Kotas2-7/+2
2018-04-11Add GetPinnableReference back to Span and ReadOnlySpan (#17504)Ahson Khan2-0/+14
2018-04-11Fix Assert in ValueTask (#17511)Ben Adams1-1/+1
2018-04-10Simple trim of ArrayPool buffers (#17078)Jeremy Kuhne6-8/+320
2018-04-10Add CreateFromPinnedArray to MemoryMarshal (#17500)Ahson Khan2-1/+34
2018-04-10Use non-inlineable overload for rare CompareOrdinalIgnoreCase path (#17492)Jan Kotas1-1/+1
2018-04-09Avoid Unsafe.As usage in ValueTask that can break type safety (#17471)Stephen Toub3-234/+338
2018-04-09Fix MemoryManager ctor and use internal span ctor to improve performance (#17...Ahson Khan2-7/+8
2018-04-06Add YieldAwaiter support to the async method builder delegate optimization (#...Stephen Toub3-11/+48
2018-04-06Add some comments to SpanHelpers.Char IndexOf and LastIndexOf (#17447)Ahson Khan1-2/+14
2018-04-05revert "Work around MCG bug around `ref char` marshalling #5481" (#5656)Luqun Lou4-47/+0
2018-04-05Vectorize and use ROSpan.LastIndexOf as the workhorse for string.LastIndexOf ...Ahson Khan3-112/+135
2018-04-04Use FormattingHelpers.Count{Hex}Digits in {u}int/long.ToString/TryFormatStephen Toub1-139/+196
2018-04-04Move FormattingHelpers.Count{Hex}Digits from Utf8Formatter into sharedStephen Toub2-0/+133
2018-04-04Consolidate and optimize TextInfo.ChangeCase (#17391)Stephen Toub3-213/+236
2018-04-04Avoid unnecessary string allocations in IdnMapping (#17399)Stephen Toub3-21/+37
2018-03-31Make AsSpan(this string) ForceInline to be on par with AsSpan(this T[]) (#17368)Jan Kotas3-6/+9
2018-03-30Change OwnedMemory to MemoryManager and add an IMemoryOwner. (#17340)Ahson Khan11-304/+266
2018-03-29Dict cache default comparer for object types (#17285)Ben Adams1-42/+132
2018-03-29StringBuilder.Equals: value to span (#17311)Maryam Ariyan1-4/+4
2018-03-28Use ROSpan.IndexOf as the workhorse for string.IndexOf (#17284)Ahson Khan2-171/+73
2018-03-28Fix Dictionary CopyTo regression (#17300)Ben Adams2-8/+8