summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/System/IConvertible.cs
AgeCommit message (Collapse)AuthorFilesLines
2019-05-09Turn on nullability for all of Corelib (#24497)Stephen Toub1-1/+0
* Enable nullable at the project level * Remove `#nullable enable` from individual files Removes `#nullable enable` from almost all .cs files in System.Private.CoreLib. I left it only in the ~30 files (out of ~1480 that had it) that are mirrored to corefx, that are built into projects by corefx that don't yet set NullableContextOptions at the project level, and that use nullable annotations; otherwise, they'd break the corefx build.
2019-04-10Nullable: System (most of it) (#23774)Stephen Toub1-17/+18
* Nullable: shared\System (most of it) And some other things it touches. * Nullable: src\System (most of it) * Address PR feedback
2018-06-24Simply type names in Corelib (#18623)Stephen Toub1-3/+3
2018-05-08Rename mscorlib to System.Private.Corelib (#17926)Maryam Ariyan1-0/+63
* diff from just renaming folder mscorlib to System.Private.CoreLib * Updating build.proj to reflect name change Fixes: #17905