summaryrefslogtreecommitdiff
path: root/src/mscorlib
AgeCommit message (Expand)AuthorFilesLines
2016-07-19Remove duplicate code from string.GetHashCode (#4696)James Ko1-52/+4
2016-07-19Improve performance, drastically reduce misfires for new string(char*) on 64-...James Ko1-15/+75
2016-07-19Better performance for string.CompareOrdinalHelper (#6119)James Ko1-70/+98
2016-07-18Add to model.xml several members we wish to expose in the FX (#6310)Dan Moseley2-73/+224
2016-07-18Add Lazy<T>(T value) constructor (#6304)Peter Jas2-0/+14
2016-07-17Add ICloneable back to several globalization types on Unix (#6307)Stephen Toub7-10/+10
2016-07-17Minimize buffer allocations in Stream.CopyTo for seekable streams (#4540)James Ko1-2/+58
2016-07-14Update to latest version of buildtoolswtgodbe1-1/+1
2016-07-13Merge pull request #6263 from stephentoub/remove_serializableStephen Toub180-281/+719
2016-07-13Add #if FEATURE_SERIALIZATION around non-functional [Serializable]Stephen Toub180-281/+719
2016-07-13Conditionally compile EnvironmentAugments.cs for coreclrStephen Toub1-1/+1
2016-07-13Add EnvironmentAugments to coreclrStephen Toub3-0/+40
2016-07-13Merge pull request #6253 from stephentoub/stop_stripping_serializableStephen Toub1-1/+1
2016-07-13Merge pull request #6247 from ellismg/add-back-exception-membersMatt Ellis1-1/+9
2016-07-13Stop BclRewriter from trimming serializable metadataStephen Toub1-1/+1
2016-07-12Add back some surface area to thinned corelibMatt Ellis1-1/+9
2016-07-12Expose missing members of Array to prep for dotnet/corefx#9998. (#6230)Dan Moseley1-1/+23
2016-07-11Avoid repeated virtual method calls in List.Contains (#6212)James Ko1-16/+13
2016-07-07Avoid box allocation in Encoding.EncodingName (#6142)Justin Van Patten1-1/+1
2016-07-07Merge pull request #6114 from jamesqo/encodingforwarderTarek Mahmoud Sayed8-1719/+555
2016-07-07Avoid heap allocating in char.ConvertFromUtf32 (#6141)James Ko1-6/+12
2016-07-07Convert SymbolType.m_format to be a string (#6133)James Ko6-54/+51
2016-07-07Avoid box allocation in DateTimeFormat.FormatCustomized (#6147)Justin Van Patten1-1/+1
2016-07-07Avoid box allocation in TypeBuilder.DefineDataHelper (#6148)Justin Van Patten1-1/+1
2016-07-07Avoid box allocation in ActivityTracker (#6149)Justin Van Patten1-1/+1
2016-07-07make all public properties of DebuggableAttribute visible outside mscorlib (#...Adam Sitnik2-0/+9
2016-07-05Remove TODO on throwing exceptionJames Ko1-3/+0
2016-07-05Move the SecuritySafeCritical attributes to EncodingForwarderJames Ko7-42/+12
2016-07-05Better performance for MulticastDelegate.Equals (#6113)James Ko1-4/+12
2016-07-04Add note on UTF8Encoding.GetByteCount to EncodingForwarderJames Ko1-0/+1
2016-07-04Fix CoreFX test failuresJames Ko3-11/+12
2016-07-04[UTF8Encoding] Remove unncessary commentsJames Ko1-66/+15
2016-07-04[UTF7Encoding] Remove unncessary commentsJames Ko1-61/+15
2016-07-04[UTF32Encoding] Remove unncessary commentsJames Ko1-62/+15
2016-07-04[UnicodeEncoding] Remove unncessary commentsJames Ko2-62/+16
2016-07-04[EncodingNLS] Remove unncessary commentsJames Ko1-58/+21
2016-07-04[ASCIIEncoding] Remove unncessary commentsJames Ko1-62/+16
2016-07-04Use EncodingForwarder for GetString(byte[], int, int)James Ko7-127/+48
2016-07-04Use EncodingForwarder for GetChars(byte*, int, char*, int)James Ko7-66/+22
2016-07-04Use EncodingForwarder for GetChars(byte[], int, int, char[], int)James Ko7-210/+50
2016-07-04Use EncodingForwarder for GetCharCount(byte*, int)James Ko7-66/+30
2016-07-04Use EncodingForwarder for GetCharCount(byte[], int, int)James Ko7-132/+38
2016-07-04Use EncodingForwarder for GetBytes(char*, int, byte*, int)James Ko7-66/+22
2016-07-04Use EncodingForwarder for GetBytes(char[], int, int, byte[], int)James Ko7-210/+52
2016-07-04Use EncodingForwarder for GetBytes(string, int, int, byte[], int)James Ko7-168/+49
2016-07-04Use EncodingForwarder for GetByteCount(char*, int)James Ko7-72/+24
2016-07-04Rename the chars parameter in a commentJames Ko1-1/+1
2016-07-04Use EncodingForwarder for GetByteCount(string)James Ko7-50/+38
2016-07-04Use EncodingForwarder for GetByteCount(char[], int, int)James Ko8-132/+66
2016-07-04Short-circuit on the count, not the array length, in common Encoding methods ...James Ko7-31/+31