Welcome to mirror list, hosted at ThFree Co, Russian Federation.

corlib.dll.sources « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a095549eaa0fb4c63838c379c042dfd2ab3af64d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
Assembly/AssemblyInfo.cs
../../build/common/Consts.cs
../../build/common/Locale.cs
../../build/common/AssemblyRef.cs
../../build/common/SR.cs
Microsoft.Win32/IRegistryApi.cs
Microsoft.Win32/RegistryKey.cs
Microsoft.Win32/RegistryKeyPermissionCheck.cs
Microsoft.Win32/Registry.cs
Microsoft.Win32/RegistryHive.cs
Microsoft.Win32/RegistryOptions.cs
Microsoft.Win32/RegistryValueKind.cs
Microsoft.Win32/RegistryValueOptions.cs
Microsoft.Win32/RegistryView.cs
Microsoft.Win32/UnixRegistryApi.cs
Microsoft.Win32/Win32RegistryApi.cs
Microsoft.Win32/Win32ResultCode.cs
Mono.Globalization.Unicode/CodePointIndexer.cs
Mono.Globalization.Unicode/MSCompatUnicodeTable.cs
Mono.Globalization.Unicode/MSCompatUnicodeTableUtil.cs
Mono.Globalization.Unicode/SimpleCollator.cs
Mono.Globalization.Unicode/SortKey.cs
Mono.Globalization.Unicode/SortKeyBuffer.cs
Mono.Globalization.Unicode/Normalization.cs
Mono.Globalization.Unicode/NormalizationTableUtil.cs
Mono/CertificateImportFlags.cs
Mono/DependencyInjector.cs
Mono/ISystemCertificateProvider.cs
Mono/ISystemDependencyProvider.cs
Mono/Runtime.cs
Mono/RuntimeHandles.cs
Mono/RuntimeMarshal.cs
Mono/RuntimeStructs.cs
Mono/SafeGPtrArrayHandle.cs
Mono/SafeStringMarshal.cs
Mono/DataConverter.cs
Mono.Interop/ComInteropProxy.cs
Mono.Interop/IDispatch.cs
Mono.Interop/IUnknown.cs
../Mono.Security/Mono.Math/BigInteger.cs
../Mono.Security/Mono.Math.Prime/ConfidenceFactor.cs
../Mono.Security/Mono.Math.Prime/PrimalityTests.cs
../Mono.Security/Mono.Math.Prime.Generator/NextPrimeFinder.cs
../Mono.Security/Mono.Math.Prime.Generator/PrimeGeneratorBase.cs
../Mono.Security/Mono.Math.Prime.Generator/SequentialSearchPrimeGeneratorBase.cs
../Mono.Security/Mono.Security/ASN1.cs
../Mono.Security/Mono.Security/ASN1Convert.cs
../Mono.Security/Mono.Security/BitConverterLE.cs
../Mono.Security/Mono.Security/PKCS7.cs
../Mono.Security/Mono.Security/StrongName.cs
Mono.Security/StrongNameManager.cs
Mono.Security/Uri.cs
../Mono.Security/Mono.Security.Authenticode/AuthenticodeBase.cs
../Mono.Security/Mono.Security.Authenticode/AuthenticodeDeformatter.cs
../Mono.Security/Mono.Security.Cryptography/ARC4Managed.cs
../Mono.Security/Mono.Security.Cryptography/CryptoConvert.cs
../Mono.Security/Mono.Security.Cryptography/CryptoTools.cs
Mono.Security.Cryptography/DSAManaged.cs
Mono.Security.Cryptography/HMACAlgorithm.cs
../Mono.Security/Mono.Security.Cryptography/KeyPairPersistence.cs
Mono.Security.Cryptography/MACAlgorithm.cs
../Mono.Security/Mono.Security.Cryptography/MD2.cs
../Mono.Security/Mono.Security.Cryptography/MD2Managed.cs
../Mono.Security/Mono.Security.Cryptography/MD4.cs
../Mono.Security/Mono.Security.Cryptography/MD4Managed.cs
../Mono.Security/Mono.Security.Cryptography/PKCS1.cs
../Mono.Security/Mono.Security.Cryptography/PKCS8.cs
../Mono.Security/Mono.Security.Cryptography/RC4.cs
../Mono.Security/Mono.Security.Cryptography/RSAManaged.cs
../Mono.Security/Mono.Security.Cryptography/SymmetricTransform.cs
../Mono.Security/Mono.Security.X509/PKCS12.cs
../Mono.Security/Mono.Security.X509/X501Name.cs
../Mono.Security/Mono.Security.X509/X509Certificate.cs
../Mono.Security/Mono.Security.X509/X509CertificateCollection.cs
../Mono.Security/Mono.Security.X509/X509Chain.cs
../Mono.Security/Mono.Security.X509/X509ChainStatusFlags.cs
../Mono.Security/Mono.Security.X509/X509CRL.cs
../Mono.Security/Mono.Security.X509/X509Extension.cs
../Mono.Security/Mono.Security.X509/X509Extensions.cs
../Mono.Security/Mono.Security.X509/X509Store.cs
../Mono.Security/Mono.Security.X509/X509Stores.cs
../Mono.Security/Mono.Security.X509/X509StoreManager.cs
../Mono.Security/Mono.Security.X509/X520Attributes.cs
../Mono.Security/Mono.Security.X509.Extensions/BasicConstraintsExtension.cs
../Mono.Security/Mono.Security.X509.Extensions/KeyUsageExtension.cs
../Mono.Security/Mono.Security.X509.Extensions/SubjectKeyIdentifierExtension.cs
Mono.Xml/SmallXmlParser.cs
Mono.Xml/SecurityParser.cs
System/ActivationContext.cs
System/AndroidPlatform.cs
System/AppDomain.cs
System/AppDomainInitializer.cs
System/AppDomainManager.cs
System/AppDomainSetup.cs
System/ApplicationIdentity.cs
System/ArgIterator.cs
System/Array.cs
../../../external/corefx/src/Common/src/CoreLib/System/AssemblyLoadEventArgs.cs
../../../external/corefx/src/Common/src/CoreLib/System/AssemblyLoadEventHandler.cs
System/CStreamReader.cs
System/CStreamWriter.cs
System/Console.cs
System/Console.iOS.cs
System/ConsoleDriver.cs
System/ControlCharacters.cs
System/CrossAppDomainDelegate.cs
System/Delegate.cs
System/DelegateSerializationHolder.cs
System/DomainManagerInitializationFlags.cs
System/EmptyArray.cs
System/Environment.cs
System/EnvironmentVariableTarget.cs
System/Guid.cs
System/IConsoleDriver.cs
System/IntPtr.cs
System/KnownTerminals.cs
System/MathF.mono.cs
System/MarshalByRefObject.cs
System/MonoAsyncCall.cs
System/MonoCQItem.cs
System/MonoCustomAttrs.cs
System/MonoListItem.cs
System/MonoType.cs
System/MonoTouchAOTHelper.cs
System/MulticastDelegate.cs
System/NullConsoleDriver.cs
System/Nullable.cs
System/NumberFormatter.cs
System/Object.cs
../../../external/corefx/src/System.Runtime.Extensions/src/System/OperatingSystem.cs
System/PlatformID.cs
../../../external/corefx/src/Common/src/CoreLib/System/ResolveEventArgs.cs
../../../external/corefx/src/Common/src/CoreLib/System/ResolveEventHandler.cs
System/RuntimeArgumentHandle.cs
System/RuntimeFieldHandle.cs
System/RuntimeMethodHandle.cs
System/RuntimeTypeHandle.cs
System/ModuleHandle.cs
../../../external/corefx/src/Common/src/CoreLib/System/StringComparison.cs
System/TermInfoBooleans.cs
System/TermInfoDriver.cs
System/TermInfoNumbers.cs
System/TermInfoReader.cs
System/TermInfoStrings.cs
System/TimeZone.cs
System/TimeZoneInfo.cs
System/TimeZoneInfo.Android.cs
System/TimeZoneInfo.MonoTouch.cs
System/TimeZoneInfo.Serialization.cs
System/TimeZoneInfo.WinRT.cs
../../build/common/MonoTODOAttribute.cs
System/TypeIdentifier.cs
System/TypeSpec.cs
../../../external/corefx/src/Common/src/CoreLib/System/TypeCode.cs
System/UIntPtr.cs
System/ValueType.cs
System/Variant.cs
../../../external/corefx/src/Common/src/CoreLib/System/Void.cs
System/WeakAttribute.cs
System/WeakReference.cs
System/WeakReference_T.cs
System/WindowsConsoleDriver.cs
System/__ComObject.cs
System.Configuration.Assemblies/AssemblyHash.cs
System.Configuration.Assemblies/AssemblyHashAlgorithm.cs
System.Configuration.Assemblies/AssemblyVersionCompatibility.cs
System.Configuration.Assemblies/ProcessorID.cs
System.Deployment.Internal/InternalActivationContextHelper.cs
System.Deployment.Internal/InternalApplicationIdentityHelper.cs
System.Diagnostics/Debug.cs
System.Diagnostics/Debugger.cs
System.Diagnostics/StackFrame.cs
System.Diagnostics/StackTrace.cs
System.Diagnostics.Tracing/EventAttribute.cs
System.Diagnostics.Tracing/EventCommand.cs
System.Diagnostics.Tracing/EventCounter.cs
System.Diagnostics.Tracing/EventSource.cs
System.Diagnostics.Tracing/EventSourceAttribute.cs
System.Diagnostics.Tracing/EventSourceSettings.cs
System.Diagnostics.Tracing/EventCommandEventArgs.cs
System.Diagnostics.Tracing/EventListener.cs
System.Diagnostics.Tracing/EventWrittenEventArgs.cs
System.Diagnostics.Tracing/NonEventAttribute.cs
System.Diagnostics.Tracing/EventDataAttribute.cs
System.Diagnostics.Tracing/EventFieldAttribute.cs
System.Diagnostics.Tracing/EventFieldFormat.cs
System.Diagnostics.Tracing/EventFieldTags.cs
System.Diagnostics.Tracing/EventIgnoreAttribute.cs
System.Diagnostics.Tracing/EventManifestOptions.cs
System.Diagnostics.SymbolStore/ISymbolBinder.cs
System.Diagnostics.SymbolStore/ISymbolBinder1.cs
System.Diagnostics.SymbolStore/ISymbolDocument.cs
System.Diagnostics.SymbolStore/ISymbolDocumentWriter.cs
System.Diagnostics.SymbolStore/ISymbolMethod.cs
System.Diagnostics.SymbolStore/ISymbolNamespace.cs
System.Diagnostics.SymbolStore/ISymbolReader.cs
System.Diagnostics.SymbolStore/ISymbolScope.cs
System.Diagnostics.SymbolStore/ISymbolVariable.cs
System.Diagnostics.SymbolStore/ISymbolWriter.cs
System.Diagnostics.SymbolStore/SymAddressKind.cs
System.Diagnostics.SymbolStore/SymbolToken.cs
System.Diagnostics.SymbolStore/SymDocumentType.cs
System.Diagnostics.SymbolStore/SymLanguageType.cs
System.Diagnostics.SymbolStore/SymLanguageVendor.cs
System.Globalization/CultureInfo.cs
System.Globalization/IdnMapping.cs
System.Globalization/RegionInfo.cs
System.Globalization/RegionInfo.MonoTouch.cs
System.IO/Directory.cs
System.IO/DirectoryInfo.cs
System.IO/DriveInfo.cs
System.IO/DriveType.cs
System.IO/File.cs
System.IO/FileAccess.cs
../../../external/corefx/src/System.Runtime/src/System/IO/FileAttributes.cs
System.IO/FileMode.cs
System.IO/FileOptions.cs
System.IO/FileShare.cs
System.IO/FileStream.cs
System.IO/FileStreamAsyncResult.cs
System.IO/HGlobalUnmanagedMemoryStream.cs
System.IO/LogcatTextWriter.cs
System.IO/MonoIO.cs
System.IO/MonoIOError.cs
System.IO/MonoFileType.cs
System.IO/MonoIOStat.cs
System.IO/Path.cs
System.IO/SearchOption.cs
System.IO/SearchPattern.cs
System.IO/SeekOrigin.cs
System.IO/UnexceptionalStreamReader.cs
System.IO/UnexceptionalStreamWriter.cs
System.IO.IsolatedStorage/INormalizeForIsolatedStorage.cs
System.IO.IsolatedStorage/IsolatedStorage.cs
System.IO.IsolatedStorage/IsolatedStorageException.cs
System.IO.IsolatedStorage/IsolatedStorageFile.cs
System.IO.IsolatedStorage/IsolatedStorageFileEnumerator.cs
System.IO.IsolatedStorage/IsolatedStorageFileStream.cs
System.IO.IsolatedStorage/IsolatedStorageScope.cs
System.IO.IsolatedStorage/IsolatedStorageSecurityOptions.cs
System.IO.IsolatedStorage/IsolatedStorageSecurityState.cs
System.Reflection/Assembly.cs
System.Reflection/AssemblyName.cs
System.Reflection/ConstructorInfo.cs
System.Reflection/CustomAttributeData.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/CustomAttributeFormatException.cs
System.Reflection/CustomAttributeNamedArgument.cs
System.Reflection/CustomAttributeTypedArgument.cs
System.Reflection/EventInfo.cs
System.Reflection/ExceptionHandlingClause.cs
System.Reflection/FieldInfo.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/ImageFileMachine.cs
System.Reflection/LocalVariableInfo.cs
System.Reflection/MethodBody.cs
System.Reflection/Module.cs
System.Reflection/ModuleResolveEventHandler.cs
System.Reflection/MonoAssembly.cs
System.Reflection/MonoEvent.cs
System.Reflection/MonoField.cs
System.Reflection/MonoMethod.cs
System.Reflection/MonoModule.cs
System.Reflection/MonoParameterInfo.cs
System.Reflection/MonoProperty.cs
System.Reflection/ParameterInfo.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/PortableExecutableKinds.cs
System.Reflection/PropertyInfo.cs
System.Reflection/StrongNameKeyPair.cs
System.Reflection.Emit/AssemblyBuilder.cs
System.Reflection.Emit/AssemblyBuilderAccess.cs
System.Reflection.Emit/ConstructorBuilder.cs
System.Reflection.Emit/ConstructorOnTypeBuilderInst.cs
System.Reflection.Emit/CustomAttributeBuilder.cs
System.Reflection.Emit/DerivedTypes.cs
System.Reflection.Emit/DynamicILInfo.cs
System.Reflection.Emit/DynamicMethod.cs
System.Reflection.Emit/DynamicMethod.notsupported.cs
System.Reflection.Emit/EnumBuilder.cs
System.Reflection.Emit/EventBuilder.cs
System.Reflection.Emit/EventOnTypeBuilderInst.cs
System.Reflection.Emit/EventToken.cs
System.Reflection.Emit/FieldBuilder.cs
System.Reflection.Emit/FieldOnTypeBuilderInst.cs
System.Reflection.Emit/FieldToken.cs
System.Reflection.Emit/FlowControl.cs
System.Reflection.Emit/GenericTypeParameterBuilder.cs
System.Reflection.Emit/ILGenerator.cs
System.Reflection.Emit/Label.cs
System.Reflection.Emit/LocalBuilder.cs
System.Reflection.Emit/MethodBuilder.cs
System.Reflection.Emit/MethodOnTypeBuilderInst.cs
System.Reflection.Emit/MethodToken.cs
System.Reflection.Emit/MethodRental.cs
System.Reflection.Emit/ModuleBuilder.cs
System.Reflection.Emit/MonoArrayMethod.cs
System.Reflection.Emit/OpCodeNames.cs
System.Reflection.Emit/OpCode.cs
System.Reflection.Emit/OpCodes.cs
System.Reflection.Emit/OpCodeType.cs
System.Reflection.Emit/OperandType.cs
System.Reflection.Emit/PackingSize.cs
System.Reflection.Emit/ParameterBuilder.cs
System.Reflection.Emit/ParameterToken.cs
System.Reflection.Emit/PEFileKinds.cs
System.Reflection.Emit/PropertyBuilder.cs
System.Reflection.Emit/PropertyOnTypeBuilderInst.cs
System.Reflection.Emit/PropertyToken.cs
System.Reflection.Emit/SignatureHelper.cs
System.Reflection.Emit/SignatureToken.cs
System.Reflection.Emit/StackBehaviour.cs
System.Reflection.Emit/StringToken.cs
System.Reflection.Emit/TypeBuilder.cs
System.Reflection.Emit/TypeBuilderInstantiation.cs
System.Reflection.Emit/TypeToken.cs
System.Reflection.Emit/UnmanagedMarshal.cs
System.Reflection.Emit/AssemblyBuilder.pns.cs
System.Reflection.Emit/ConstructorBuilder.pns.cs
System.Reflection.Emit/CustomAttributeBuilder.pns.cs
System.Reflection.Emit/EnumBuilder.pns.cs
System.Reflection.Emit/EventBuilder.pns.cs
System.Reflection.Emit/FieldBuilder.pns.cs
System.Reflection.Emit/GenericTypeParameterBuilder.pns.cs
System.Reflection.Emit/ILGenerator.pns.cs
System.Reflection.Emit/MethodBuilder.pns.cs
System.Reflection.Emit/ModuleBuilder.pns.cs
System.Reflection.Emit/ParameterBuilder.pns.cs
System.Reflection.Emit/PropertyBuilder.pns.cs
System.Reflection.Emit/SignatureHelper.pns.cs
System.Reflection.Emit/TypeBuilder.pns.cs
System.Reflection.Metadata/AssemblyExtensions.cs
System.Resources/Win32Resources.cs
System.Runtime/GCLargeObjectHeapCompactionMode.cs
System.Runtime/GCLatencyMode.cs
System.Runtime/GCSettings.cs
System.Runtime/MemoryFailPoint.cs
System.Runtime.CompilerServices/ConditionalWeakTable.cs
System.Runtime.CompilerServices/PreserveDependencyAttribute.cs
System.Runtime.CompilerServices/RuntimeHelpers.cs
System.Runtime.CompilerServices/Unsafe.cs
System.Runtime.Hosting/ActivationArguments.cs
System.Runtime.Hosting/ApplicationActivator.cs
System.Runtime.InteropServices/_Activator.cs
System.Runtime.InteropServices/_Assembly.cs
System.Runtime.InteropServices/_AssemblyBuilder.cs
System.Runtime.InteropServices/_AssemblyName.cs
System.Runtime.InteropServices/_Attribute.cs
System.Runtime.InteropServices/_ConstructorBuilder.cs
System.Runtime.InteropServices/_ConstructorInfo.cs
System.Runtime.InteropServices/_CustomAttributeBuilder.cs
System.Runtime.InteropServices/_EnumBuilder.cs
System.Runtime.InteropServices/_EventBuilder.cs
System.Runtime.InteropServices/_EventInfo.cs
System.Runtime.InteropServices/_Exception.cs
System.Runtime.InteropServices/_FieldBuilder.cs
System.Runtime.InteropServices/_FieldInfo.cs
System.Runtime.InteropServices/_ILGenerator.cs
System.Runtime.InteropServices/_LocalBuilder.cs
System.Runtime.InteropServices/_MemberInfo.cs
System.Runtime.InteropServices/_MethodBase.cs
System.Runtime.InteropServices/_MethodBuilder.cs
System.Runtime.InteropServices/_MethodInfo.cs
System.Runtime.InteropServices/_MethodRental.cs
System.Runtime.InteropServices/_Module.cs
System.Runtime.InteropServices/_ModuleBuilder.cs
System.Runtime.InteropServices/_ParameterBuilder.cs
System.Runtime.InteropServices/_ParameterInfo.cs
System.Runtime.InteropServices/_PropertyBuilder.cs
System.Runtime.InteropServices/_PropertyInfo.cs
System.Runtime.InteropServices/_SignatureHelper.cs
System.Runtime.InteropServices/_Thread.cs
System.Runtime.InteropServices/_Type.cs
System.Runtime.InteropServices/_TypeBuilder.cs
System.Runtime.InteropServices/BIND_OPTS.cs
System.Runtime.InteropServices/BINDPTR.cs
System.Runtime.InteropServices/DESCKIND.cs
System.Runtime.InteropServices/ExporterEventKind.cs
System.Runtime.InteropServices/ExtensibleClassFactory.cs
System.Runtime.InteropServices/FILETIME.cs
System.Runtime.InteropServices/GCHandle.cs
System.Runtime.InteropServices/GCHandleType.cs
System.Runtime.InteropServices/IErrorInfo.cs
System.Runtime.InteropServices/ITypeLibConverter.cs
System.Runtime.InteropServices/ITypeLibExporterNameProvider.cs
System.Runtime.InteropServices/ITypeLibExporterNotifySink.cs
System.Runtime.InteropServices/ITypeLibImporterNotifySink.cs
System.Runtime.InteropServices/ImporterEventKind.cs
System.Runtime.InteropServices/LIBFLAGS.cs
System.Runtime.InteropServices/ManagedErrorInfo.cs
System.Runtime.InteropServices/Marshal.cs
System.Runtime.InteropServices/MarshalAsAttribute.cs
System.Runtime.InteropServices/RegistrationClassContext.cs
../../../external/corefx/src/System.Runtime.InteropServices/src/System/Runtime/InteropServices/RegistrationConnectionType.cs
System.Runtime.InteropServices/STATSTG.cs
System.Runtime.InteropServices/RegistrationServices.cs
System.Runtime.InteropServices/SafeBuffer.cs
System.Runtime.InteropServices/SafeHandle.cs
System.Runtime.InteropServices/SYSKIND.cs
System.Runtime.InteropServices/TYPELIBATTR.cs
System.Runtime.InteropServices/TypeLibConverter.cs
System.Runtime.InteropServices/TypeLibExporterFlags.cs
System.Runtime.InteropServices/TypeLibImporterFlags.cs
System.Runtime.InteropServices/UCOMIBindCtx.cs
System.Runtime.InteropServices/UCOMIConnectionPoint.cs
System.Runtime.InteropServices/UCOMIConnectionPointContainer.cs
System.Runtime.InteropServices/UCOMIEnumConnectionPoints.cs
System.Runtime.InteropServices/UCOMIEnumMoniker.cs
System.Runtime.InteropServices/UCOMIEnumString.cs
System.Runtime.InteropServices/UCOMIEnumVARIANT.cs
System.Runtime.InteropServices/UCOMIMoniker.cs
System.Runtime.InteropServices/UCOMIPersistFile.cs
System.Runtime.InteropServices/UCOMIRunningObjectTable.cs
System.Runtime.InteropServices/UCOMIStream.cs
System.Runtime.InteropServices/UCOMITypeComp.cs
System.Runtime.InteropServices/UCOMITypeLib.cs
System.Runtime.InteropServices/CustomQueryInterfaceMode.cs
System.Runtime.InteropServices/ComEventsHelper.cs

System.Runtime.InteropServices.WindowsRuntime/DesignerNamespaceResolveEventArgs.cs
System.Runtime.InteropServices.WindowsRuntime/NamespaceResolveEventArgs.cs
System.Runtime.InteropServices.WindowsRuntime/UnsafeNativeMethods.cs
System.Runtime.InteropServices.WindowsRuntime/WindowsRuntimeMetadata.cs

System.Runtime.InteropServices.RuntimeInformation/RuntimeInformation.cs

System.Runtime.Remoting/ActivatedClientTypeEntry.cs
System.Runtime.Remoting/ActivatedServiceTypeEntry.cs
System.Runtime.Remoting/CustomErrorsModes.cs
System.Runtime.Remoting/EnvoyInfo.cs
System.Runtime.Remoting/IObjectHandle.cs
System.Runtime.Remoting/IChannelInfo.cs
System.Runtime.Remoting/Identity.cs
System.Runtime.Remoting/InternalRemotingServices.cs
System.Runtime.Remoting/IEnvoyInfo.cs
System.Runtime.Remoting/IRemotingTypeInfo.cs
System.Runtime.Remoting/ObjectHandle.cs
System.Runtime.Remoting/ObjRef.cs
System.Runtime.Remoting/RemotingConfiguration.cs
System.Runtime.Remoting/RemotingException.cs
System.Runtime.Remoting/RemotingTimeoutException.cs
System.Runtime.Remoting/RemotingServices.cs
System.Runtime.Remoting/ServerException.cs
System.Runtime.Remoting/ServerIdentity.cs
System.Runtime.Remoting/SoapServices.cs
System.Runtime.Remoting/TypeEntry.cs
System.Runtime.Remoting/TypeInfo.cs
System.Runtime.Remoting/WellKnownObjectMode.cs
System.Runtime.Remoting/WellKnownClientTypeEntry.cs
System.Runtime.Remoting/WellKnownServiceTypeEntry.cs
System.Runtime.Remoting.Activation/ActivationServices.cs
System.Runtime.Remoting.Activation/ActivatorLevel.cs
System.Runtime.Remoting.Activation/AppDomainLevelActivator.cs
System.Runtime.Remoting.Activation/ConstructionLevelActivator.cs
System.Runtime.Remoting.Activation/ContextLevelActivator.cs
System.Runtime.Remoting.Activation/IActivator.cs
System.Runtime.Remoting.Activation/IConstructionCallMessage.cs
System.Runtime.Remoting.Activation/IConstructionReturnMessage.cs
System.Runtime.Remoting.Activation/RemoteActivator.cs
System.Runtime.Remoting.Activation/RemoteActivationAttribute.cs
System.Runtime.Remoting.Activation/UrlAttribute.cs
System.Runtime.Remoting.Channels/AggregateDictionary.cs
System.Runtime.Remoting.Channels/BaseChannelObjectWithProperties.cs
System.Runtime.Remoting.Channels/BaseChannelSinkWithProperties.cs
System.Runtime.Remoting.Channels/BaseChannelWithProperties.cs
System.Runtime.Remoting.Channels/ChannelDataStore.cs
System.Runtime.Remoting.Channels/ChannelServices.cs
System.Runtime.Remoting.Channels/ChannelSinkStackEntry.cs
System.Runtime.Remoting.Channels/ClientChannelSinkStack.cs
System.Runtime.Remoting.Channels/IChannel.cs
System.Runtime.Remoting.Channels/IChannelDataStore.cs
System.Runtime.Remoting.Channels/IChannelReceiver.cs
System.Runtime.Remoting.Channels/IChannelReceiverHook.cs
System.Runtime.Remoting.Channels/IChannelSender.cs
System.Runtime.Remoting.Channels/IChannelSinkBase.cs
System.Runtime.Remoting.Channels/IClientChannelSink.cs
System.Runtime.Remoting.Channels/IClientChannelSinkProvider.cs
System.Runtime.Remoting.Channels/IClientChannelSinkStack.cs
System.Runtime.Remoting.Channels/IClientFormatterSink.cs
System.Runtime.Remoting.Channels/IClientFormatterSinkProvider.cs
System.Runtime.Remoting.Channels/IClientResponseChannelSinkStack.cs
System.Runtime.Remoting.Channels/ISecurableChannel.cs
System.Runtime.Remoting.Channels/IServerResponseChannelSinkStack.cs
System.Runtime.Remoting.Channels/ServerDispatchSink.cs
System.Runtime.Remoting.Channels/ServerDispatchSinkProvider.cs
System.Runtime.Remoting.Channels/IServerChannelSink.cs
System.Runtime.Remoting.Channels/IServerChannelSinkProvider.cs
System.Runtime.Remoting.Channels/IServerChannelSinkStack.cs
System.Runtime.Remoting.Channels/IServerFormatterSinkProvider.cs
System.Runtime.Remoting.Channels/ITransportHeaders.cs
System.Runtime.Remoting.Channels/ServerChannelSinkStack.cs
System.Runtime.Remoting.Channels/ServerProcessing.cs
System.Runtime.Remoting.Channels/SinkProviderData.cs
System.Runtime.Remoting.Channels/TransportHeaders.cs
System.Runtime.Remoting.Channels/CrossAppDomainChannel.cs
System.Runtime.Remoting.Contexts/Context.cs
System.Runtime.Remoting.Contexts/ContextAttribute.cs
System.Runtime.Remoting.Contexts/ContextProperty.cs
System.Runtime.Remoting.Contexts/CrossContextChannel.cs
System.Runtime.Remoting.Contexts/CrossContextDelegate.cs
System.Runtime.Remoting.Contexts/IContextAttribute.cs
System.Runtime.Remoting.Contexts/IContextProperty.cs
System.Runtime.Remoting.Contexts/IContextPropertyActivator.cs
System.Runtime.Remoting.Contexts/IContributeClientContextSink.cs
System.Runtime.Remoting.Contexts/IContributeDynamicSink.cs
System.Runtime.Remoting.Contexts/IContributeEnvoySink.cs
System.Runtime.Remoting.Contexts/IContributeObjectSink.cs
System.Runtime.Remoting.Contexts/IContributeServerContextSink.cs
System.Runtime.Remoting.Contexts/IDynamicMessageSink.cs
System.Runtime.Remoting.Contexts/IDynamicProperty.cs
System.Runtime.Remoting.Contexts/SynchronizationAttribute.cs
System.Runtime.Remoting.Lifetime/ClientSponsor.cs
System.Runtime.Remoting.Lifetime/ILease.cs
System.Runtime.Remoting.Lifetime/ISponsor.cs
System.Runtime.Remoting.Lifetime/Lease.cs
System.Runtime.Remoting.Lifetime/LeaseManager.cs
System.Runtime.Remoting.Lifetime/LeaseSink.cs
System.Runtime.Remoting.Lifetime/LeaseState.cs
System.Runtime.Remoting.Lifetime/LifetimeServices.cs
System.Runtime.Remoting.Messaging/ArgInfo.cs
System.Runtime.Remoting.Messaging/AsyncResult.cs
System.Runtime.Remoting.Messaging/ClientContextTerminatorSink.cs
System.Runtime.Remoting.Messaging/ConstructionCall.cs
System.Runtime.Remoting.Messaging/ConstructionCallDictionary.cs
System.Runtime.Remoting.Messaging/ConstructionResponse.cs
System.Runtime.Remoting.Messaging/EnvoyTerminatorSink.cs
System.Runtime.Remoting.Messaging/Header.cs
System.Runtime.Remoting.Messaging/HeaderHandler.cs
System.Runtime.Remoting.Messaging/ErrorMessage.cs
System.Runtime.Remoting.Messaging/IInternalMessage.cs
System.Runtime.Remoting.Messaging/IMessage.cs
System.Runtime.Remoting.Messaging/IMessageCtrl.cs
System.Runtime.Remoting.Messaging/IMessageSink.cs
System.Runtime.Remoting.Messaging/IMethodCallMessage.cs
System.Runtime.Remoting.Messaging/IMethodMessage.cs
System.Runtime.Remoting.Messaging/IMethodReturnMessage.cs
System.Runtime.Remoting.Messaging/IRemotingFormatter.cs
System.Runtime.Remoting.Messaging/InternalMessageWrapper.cs
System.Runtime.Remoting.Messaging/ISerializationRootObject.cs
System.Runtime.Remoting.Messaging/MessageSurrogateFilter.cs
System.Runtime.Remoting.Messaging/MethodCall.cs
System.Runtime.Remoting.Messaging/MethodCallMessageWrapper.cs
System.Runtime.Remoting.Messaging/MethodResponse.cs
System.Runtime.Remoting.Messaging/MethodCallDictionary.cs
System.Runtime.Remoting.Messaging/MethodDictionary.cs
System.Runtime.Remoting.Messaging/MethodReturnDictionary.cs
System.Runtime.Remoting.Messaging/MethodReturnMessageWrapper.cs
System.Runtime.Remoting.Messaging/MonoMethodMessage.cs
System.Runtime.Remoting.Messaging/OneWayAttribute.cs
System.Runtime.Remoting.Messaging/RemotingSurrogateSelector.cs
System.Runtime.Remoting.Messaging/RemotingSurrogate.cs
System.Runtime.Remoting.Messaging/ReturnMessage.cs
System.Runtime.Remoting.Messaging/ServerContextTerminatorSink.cs
System.Runtime.Remoting.Messaging/ServerObjectTerminatorSink.cs
System.Runtime.Remoting.Messaging/StackBuilderSink.cs
System.Runtime.Remoting.Messaging/CADMessages.cs
System.Runtime.Remoting.Metadata/SoapAttribute.cs
System.Runtime.Remoting.Metadata/SoapFieldAttribute.cs
System.Runtime.Remoting.Metadata/SoapMethodAttribute.cs
System.Runtime.Remoting.Metadata/SoapOption.cs
System.Runtime.Remoting.Metadata/SoapParameterAttribute.cs
System.Runtime.Remoting.Metadata/SoapTypeAttribute.cs
System.Runtime.Remoting.Metadata/XmlFieldOrderOption.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/ISoapXsd.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapAnyUri.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapEntity.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapMonth.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNonNegativeInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapToken.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapBase64Binary.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapHexBinary.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapMonthDay.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNonPositiveInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapYear.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapDate.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapHelper.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapId.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapName.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNormalizedString.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapYearMonth.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapDateTime.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapIdref.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNcName.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNotation.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapDay.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapIdrefs.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNegativeInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapPositiveInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapDuration.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapInteger.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNmtoken.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapQName.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapEntities.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapLanguage.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapNmtokens.cs
System.Runtime.Remoting.Metadata.W3cXsd2001/SoapTime.cs
System.Runtime.Remoting.Proxies/RealProxy.cs
System.Runtime.Remoting.Proxies/RemotingProxy.cs
System.Runtime.Remoting.Proxies/ProxyAttribute.cs
System.Runtime.Remoting.Services/EnterpriseServicesHelper.cs
System.Runtime.Remoting.Services/ITrackingHandler.cs
System.Runtime.Remoting.Services/TrackingServices.cs
System.Runtime.Versioning/CompatibilitySwitch.cs
System.Security/CodeAccessPermission.cs
System.Security/HostProtectionException.cs
System.Security/HostSecurityManager.cs
System.Security/HostSecurityManagerFlags.cs
System.Security/IEvidenceFactory.cs
System.Security/IPermission.cs
System.Security/ISecurityEncodable.cs
System.Security/ISecurityPolicyEncodable.cs
System.Security/IStackWalk.cs
System.Security/NamedPermissionSet.cs
System.Security/PermissionBuilder.cs
System.Security/PermissionSet.cs
System.Security/PolicyLevelType.cs
System.Security/SecureString.cs
System.Security/SecurityElement.cs
System.Security/SecurityFrame.cs
System.Security/SecurityException.cs
System.Security/SecurityManager.cs
System.Security/SecurityManager_mobile.cs
System.Security/SecurityState.cs
System.Security/SecurityZone.cs
System.Security/VerificationException.cs
System.Security/XmlSyntaxException.cs
System.Security.AccessControl/AccessControlActions.cs
System.Security.AccessControl/AccessControlModification.cs
System.Security.AccessControl/AccessControlSections.cs
System.Security.AccessControl/AccessControlType.cs
System.Security.AccessControl/AccessRule.cs
System.Security.AccessControl/AccessRule_T.cs
System.Security.AccessControl/AceEnumerator.cs
System.Security.AccessControl/AceFlags.cs
System.Security.AccessControl/AceQualifier.cs
System.Security.AccessControl/AceType.cs
System.Security.AccessControl/AuditFlags.cs
System.Security.AccessControl/AuditRule.cs
System.Security.AccessControl/AuditRule_T.cs
System.Security.AccessControl/AuthorizationRule.cs
System.Security.AccessControl/AuthorizationRuleCollection.cs
System.Security.AccessControl/CommonAce.cs
System.Security.AccessControl/CommonAcl.cs
System.Security.AccessControl/CommonObjectSecurity.cs
System.Security.AccessControl/CommonSecurityDescriptor.cs
System.Security.AccessControl/CompoundAce.cs
System.Security.AccessControl/CompoundAceType.cs
System.Security.AccessControl/ControlFlags.cs
System.Security.AccessControl/CryptoKeyAccessRule.cs
System.Security.AccessControl/CryptoKeyAuditRule.cs
System.Security.AccessControl/CryptoKeyRights.cs
System.Security.AccessControl/CryptoKeySecurity.cs
System.Security.AccessControl/CustomAce.cs
System.Security.AccessControl/DirectoryObjectSecurity.cs
System.Security.AccessControl/DirectorySecurity.cs
System.Security.AccessControl/DiscretionaryAcl.cs
System.Security.AccessControl/EventWaitHandleAccessRule.cs
System.Security.AccessControl/EventWaitHandleAuditRule.cs
System.Security.AccessControl/EventWaitHandleRights.cs
System.Security.AccessControl/EventWaitHandleSecurity.cs
System.Security.AccessControl/FileSecurity.cs
System.Security.AccessControl/FileSystemAccessRule.cs
System.Security.AccessControl/FileSystemAuditRule.cs
System.Security.AccessControl/FileSystemRights.cs
System.Security.AccessControl/FileSystemSecurity.cs
System.Security.AccessControl/GenericAce.cs
System.Security.AccessControl/GenericAcl.cs
System.Security.AccessControl/GenericSecurityDescriptor.cs
System.Security.AccessControl/InheritanceFlags.cs
System.Security.AccessControl/KnownAce.cs
System.Security.AccessControl/MutexAccessRule.cs
System.Security.AccessControl/MutexAuditRule.cs
System.Security.AccessControl/MutexRights.cs
System.Security.AccessControl/MutexSecurity.cs
System.Security.AccessControl/NativeObjectSecurity.cs
System.Security.AccessControl/ObjectAccessRule.cs
System.Security.AccessControl/ObjectAce.cs
System.Security.AccessControl/ObjectAceFlags.cs
System.Security.AccessControl/ObjectAuditRule.cs
System.Security.AccessControl/ObjectSecurity.cs
System.Security.AccessControl/ObjectSecurity_T.cs
System.Security.AccessControl/PrivilegeNotHeldException.cs
System.Security.AccessControl/PropagationFlags.cs
System.Security.AccessControl/QualifiedAce.cs
System.Security.AccessControl/RawAcl.cs
System.Security.AccessControl/RawSecurityDescriptor.cs
System.Security.AccessControl/RegistryAccessRule.cs
System.Security.AccessControl/RegistryAuditRule.cs
System.Security.AccessControl/RegistryRights.cs
System.Security.AccessControl/RegistrySecurity.cs
System.Security.AccessControl/ResourceType.cs
System.Security.AccessControl/SddlAccessRight.cs
System.Security.AccessControl/SecurityInfos.cs
System.Security.AccessControl/SystemAcl.cs
System.Security.Cryptography/CryptoAPITransform.cs
System.Security.Cryptography/CryptoConfig.cs
System.Security.Cryptography/CryptoConfig.common.cs
System.Security.Cryptography/CryptoConfig.Mobile.cs
System.Security.Cryptography/CspKeyContainerInfo.cs
System.Security.Cryptography/DESCryptoServiceProvider.cs
System.Security.Cryptography/DSACryptoServiceProvider.cs
System.Security.Cryptography/ICspAsymmetricAlgorithm.cs
System.Security.Cryptography/KeyNumber.cs
System.Security.Cryptography/MD5CryptoServiceProvider.cs
System.Security.Cryptography/RC2CryptoServiceProvider.cs
System.Security.Cryptography/RNGCryptoServiceProvider.cs
System.Security.Cryptography/RSACryptoServiceProvider.cs
System.Security.Cryptography/RSAPKCS1SignatureDeformatter.cs
System.Security.Cryptography/RSAPKCS1SignatureFormatter.cs
System.Security.Cryptography/SHA1CryptoServiceProvider.cs
System.Security.Cryptography/TripleDESCryptoServiceProvider.cs
System.Security.Cryptography.X509Certificates/X509Certificate.cs
System.Security.Cryptography.X509Certificates/X509Certificate20.cs
System.Security.Cryptography.X509Certificates/X509CertificateImpl.cs
System.Security.Cryptography.X509Certificates/X509Helper.cs
System.Security.Permissions/CodeAccessSecurityAttribute.cs
System.Security.Permissions/EnvironmentPermission.cs
System.Security.Permissions/EnvironmentPermissionAccess.cs
System.Security.Permissions/EnvironmentPermissionAttribute.cs
System.Security.Permissions/FileDialogPermission.cs 
System.Security.Permissions/FileDialogPermissionAccess.cs
System.Security.Permissions/FileDialogPermissionAttribute.cs
System.Security.Permissions/FileIOPermission.cs
System.Security.Permissions/FileIOPermissionAccess.cs
System.Security.Permissions/FileIOPermissionAttribute.cs
System.Security.Permissions/GacIdentityPermission.cs
System.Security.Permissions/GacIdentityPermissionAttribute.cs
System.Security.Permissions/HostProtectionAttribute.cs
System.Security.Permissions/HostProtectionPermission.cs
System.Security.Permissions/HostProtectionResource.cs
System.Security.Permissions/IBuiltInPermission.cs
System.Security.Permissions/IsolatedStorageContainment.cs
System.Security.Permissions/IsolatedStorageFilePermission.cs 
System.Security.Permissions/IsolatedStorageFilePermissionAttribute.cs
System.Security.Permissions/IsolatedStoragePermission.cs
System.Security.Permissions/IsolatedStoragePermissionAttribute.cs
System.Security.Permissions/IUnrestrictedPermission.cs
System.Security.Permissions/KeyContainerPermission.cs
System.Security.Permissions/KeyContainerPermissionAccessEntry.cs
System.Security.Permissions/KeyContainerPermissionAccessEntryCollection.cs
System.Security.Permissions/KeyContainerPermissionAccessEntryEnumerator.cs
System.Security.Permissions/KeyContainerPermissionAttribute.cs
System.Security.Permissions/KeyContainerPermissionFlags.cs
System.Security.Permissions/PermissionSetAttribute.cs
System.Security.Permissions/PermissionState.cs
System.Security.Permissions/PrincipalPermission.cs 
System.Security.Permissions/PrincipalPermissionAttribute.cs
System.Security.Permissions/PublisherIdentityPermission.cs
System.Security.Permissions/PublisherIdentityPermissionAttribute.cs 
System.Security.Permissions/ReflectionPermission.cs
System.Security.Permissions/ReflectionPermissionAttribute.cs
System.Security.Permissions/ReflectionPermissionFlag.cs
System.Security.Permissions/RegistryPermission.cs
System.Security.Permissions/RegistryPermissionAccess.cs
System.Security.Permissions/RegistryPermissionAttribute.cs
System.Security.Permissions/SecurityAction.cs
System.Security.Permissions/SecurityAttribute.cs
System.Security.Permissions/SecurityPermission.cs
System.Security.Permissions/SecurityPermissionAttribute.cs
System.Security.Permissions/SecurityPermissionFlag.cs
System.Security.Permissions/SiteIdentityPermission.cs 
System.Security.Permissions/SiteIdentityPermissionAttribute.cs
System.Security.Permissions/StrongNameIdentityPermission.cs
System.Security.Permissions/StrongNamePermissionAttribute.cs
System.Security.Permissions/StrongNamePublicKeyBlob.cs
System.Security.Permissions/UIPermission.cs 
System.Security.Permissions/UIPermissionAttribute.cs
System.Security.Permissions/UIPermissionClipboard.cs
System.Security.Permissions/UIPermissionWindow.cs
System.Security.Permissions/UrlIdentityPermission.cs
System.Security.Permissions/UrlIdentityPermissionAttribute.cs
System.Security.Permissions/ZoneIdentityPermission.cs
System.Security.Permissions/ZoneIdentityPermissionAttribute.cs
System.Security.Policy/AllMembershipCondition.cs
System.Security.Policy/ApplicationDirectory.cs
System.Security.Policy/ApplicationDirectoryMembershipCondition.cs
System.Security.Policy/ApplicationSecurityInfo.cs
System.Security.Policy/ApplicationSecurityManager.cs
System.Security.Policy/ApplicationTrust.cs
System.Security.Policy/ApplicationTrustCollection.cs
System.Security.Policy/ApplicationTrustEnumerator.cs
System.Security.Policy/ApplicationVersionMatch.cs
System.Security.Policy/CodeConnectAccess.cs
System.Security.Policy/CodeGroup.cs
System.Security.Policy/DefaultPolicies.cs
System.Security.Policy/Evidence.cs
System.Security.Policy/EvidenceBase.cs
System.Security.Policy/FileCodeGroup.cs
System.Security.Policy/FirstMatchCodeGroup.cs
System.Security.Policy/Gac.cs
System.Security.Policy/GacMembershipCondition.cs
System.Security.Policy/Hash.cs
System.Security.Policy/HashMembershipCondition.cs
System.Security.Policy/IApplicationTrustManager.cs
System.Security.Policy/IBuiltInEvidence.cs
System.Security.Policy/IConstantMembershipCondition.cs
System.Security.Policy/IIdentityPermissionFactory.cs
System.Security.Policy/IMembershipCondition.cs
System.Security.Policy/MembershipConditionHelper.cs
System.Security.Policy/MonoTrustManager.cs
System.Security.Policy/NetCodeGroup.cs
System.Security.Policy/PermissionRequestEvidence.cs
System.Security.Policy/PolicyException.cs
System.Security.Policy/PolicyLevel.cs
System.Security.Policy/PolicyStatement.cs
System.Security.Policy/PolicyStatementAttribute.cs
System.Security.Policy/Publisher.cs
System.Security.Policy/PublisherMembershipCondition.cs
System.Security.Policy/Site.cs
System.Security.Policy/SiteMembershipCondition.cs
System.Security.Policy/StrongName.cs
System.Security.Policy/StrongNameMembershipCondition.cs
System.Security.Policy/TrustManagerContext.cs
System.Security.Policy/TrustManagerUIContext.cs
System.Security.Policy/UnionCodeGroup.cs
System.Security.Policy/Url.cs
System.Security.Policy/UrlMembershipCondition.cs
System.Security.Policy/Zone.cs
System.Security.Policy/ZoneMembershipCondition.cs
System.Security.Principal/GenericPrincipal.cs
System.Security.Principal/IdentityNotMappedException.cs
System.Security.Principal/IdentityReferenceCollection.cs
System.Security.Principal/IdentityReference.cs
System.Security.Principal/IIdentity.cs
System.Security.Principal/IPrincipal.cs
System.Security.Principal/NTAccount.cs
System.Security.Principal/PrincipalPolicy.cs
System.Security.Principal/SecurityIdentifier.cs
System.Security.Principal/TokenAccessLevels.cs
System.Security.Principal/TokenImpersonationLevel.cs
System.Security.Principal/WellKnownAccount.cs
System.Security.Principal/WellKnownSidType.cs
System.Security.Principal/WindowsAccountType.cs
System.Security.Principal/WindowsBuiltInRole.cs
System.Security.Principal/WindowsIdentity.cs
System.Security.Principal/WindowsImpersonationContext.cs
System.Security.Principal/WindowsPrincipal.cs
System.Text/EncodingHelper.cs
System.Threading/CompressedStack.cs
System.Threading/HostExecutionContext.cs
System.Threading/HostExecutionContextManager.cs
System.Threading/Interlocked.cs
System.Threading/LockCookie.cs
System.Threading/LockQueue.cs
System.Threading/Monitor.cs
System.Threading/Mutex.cs
System.Threading/NativeEventCalls.cs
System.Threading/NativeOverlapped.cs
System.Threading/Overlapped.cs
System.Threading/ReaderWriterLock.cs
System.Threading/RegisteredWaitHandle.cs
System.Threading/Thread.cs
System.Threading/Timer.cs
System.Threading/TimerCallback.cs
System.Threading/Volatile.cs
System.Threading/WaitHandle.cs

System.Threading.Tasks/DecoupledTask.cs
../Mono.Parallel/Mono.Threading/AtomicBoolean.cs

CoreFoundation/CFHelpers.cs

ReferenceSources/__ConsoleStream.cs
ReferenceSources/Array.cs
ReferenceSources/BCLDebug.cs
ReferenceSources/CalendarData.cs
ReferenceSources/CompatibilitySwitches.cs
ReferenceSources/CultureData.cs
ReferenceSources/DefaultBinder.cs
ReferenceSources/Environment.cs
../../../external/corefx/src/Common/src/CoreLib/System/ParseNumbers.cs
ReferenceSources/AppDomain.cs
ReferenceSources/CLRConfig.cs
ReferenceSources/JitHelpers.cs
ReferenceSources/EncodingDataItem.cs
ReferenceSources/EncodingTable.cs
ReferenceSources/TypeNameParser.cs
ReferenceSources/RuntimeType.cs
ReferenceSources/RemotingFieldCachedData.cs
ReferenceSources/MethodBase.cs
ReferenceSources/NativeMethods.cs
ReferenceSources/RuntimeHandles.cs
ReferenceSources/CompareInfo.cs
ReferenceSources/Buffer.cs
ReferenceSources/TextInfo.cs
ReferenceSources/win32native.cs
ReferenceSources/SecurityContext.cs
ReferenceSources/PathInternal.cs
ReferenceSources/BinaryCompatibility.cs
ReferenceSources/String.cs
ReferenceSources/Type.cs

../referencesource/mscorlib/system/__filters.cs
../referencesource/mscorlib/system/__hresults.cs
../referencesource/mscorlib/system/_localdatastore.cs
../referencesource/mscorlib/system/_localdatastoremgr.cs
../../../external/corefx/src/Common/src/CoreLib/System/AccessViolationException.cs
../referencesource/mscorlib/system/activator.cs
../../../external/corefx/src/Common/src/CoreLib/System/AggregateException.cs
../referencesource/mscorlib/system/appdomainattributes.cs
../../../external/corefx/src/System.Runtime.Extensions/src/System/AppDomainUnloadedException.cs
../../../external/corefx/src/Common/src/CoreLib/System/ApplicationException.cs
../../../external/corefx/src/System.Runtime.Extensions/src/System/ApplicationId.cs
../../../external/corefx/src/Common/src/CoreLib/System/ArgumentException.cs
../../../external/corefx/src/Common/src/CoreLib/System/ArgumentNullException.cs
../../../external/corefx/src/Common/src/CoreLib/System/ArgumentOutOfRangeException.cs
../../../external/corefx/src/Common/src/CoreLib/System/ArithmeticException.cs
../../../external/corefx/src/Common/src/CoreLib/System/ArraySegment.cs
../../../external/corefx/src/Common/src/CoreLib/System/ArrayTypeMismatchException.cs
../../../external/corefx/src/Common/src/CoreLib/System/AsyncCallback.cs
../referencesource/mscorlib/system/attribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/AttributeTargets.cs
../../../external/corefx/src/Common/src/CoreLib/System/AttributeUsageAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/BadImageFormatException.cs
../referencesource/mscorlib/system/bitconverter.cs
../../../external/corefx/src/Common/src/CoreLib/System/Boolean.cs
../referencesource/mscorlib/system/buffer.cs
../../../external/corefx/src/Common/src/CoreLib/System/Byte.cs
../../../external/corefx/src/System.Runtime.Extensions/src/System/CannotUnloadAppDomainException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Char.cs
../../../external/corefx/src/Common/src/CoreLib/System/CharEnumerator.cs
../../../external/corefx/src/System.Console/src/System/ConsoleCancelEventArgs.cs
../../../external/corefx/src/System.Console/src/System/ConsoleColor.cs
../referencesource/mscorlib/system/consolekey.cs
../../../external/corefx/src/System.Console/src/System/ConsoleKeyInfo.cs
../../../external/corefx/src/System.Console/src/System/ConsoleModifiers.cs
../../../external/corefx/src/System.Console/src/System/ConsoleSpecialKey.cs
../referencesource/mscorlib/system/contextboundobject.cs
../referencesource/mscorlib/system/contextstaticattribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/CLSCompliantAttribute.cs
../referencesource/mscorlib/system/contextmarshalexception.cs
../../../external/corefx/src/Common/src/CoreLib/System/Convert.cs
../../../external/corefx/src/Common/src/CoreLib/System/Convert.Base64.cs
../../../external/corefx/src/Common/src/CoreLib/System/DataMisalignedException.cs
../referencesource/mscorlib/system/datetime.cs
../../../external/corefx/src/Common/src/CoreLib/System/DateTimeKind.cs
../referencesource/mscorlib/system/datetimeoffset.cs
../../../external/corefx/src/Common/src/CoreLib/System/DayOfWeek.cs
#../../../external/corert/src/System.Private.CoreLib/src/System/Decimal.cs
#../../../external/corert/src/System.Private.CoreLib/src/System/Decimal.DecCalc.cs
corert/Decimal.cs
corert/Decimal.DecCalc.cs
../referencesource/mscorlib/system/defaultbinder.cs
../referencesource/mscorlib/system/dbnull.cs
../../../external/corefx/src/Common/src/CoreLib/System/DivideByZeroException.cs
../../../external/corefx/src/Common/src/CoreLib/System/DllNotFoundException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Double.cs
../../../external/corefx/src/Common/src/CoreLib/System/DuplicateWaitObjectException.cs
../referencesource/mscorlib/system/empty.cs
../referencesource/mscorlib/system/enum.cs
../../../external/corefx/src/Common/src/CoreLib/System/EntryPointNotFoundException.cs
../../../external/corefx/src/Common/src/CoreLib/System/EventArgs.cs
../../../external/corefx/src/Common/src/CoreLib/System/EventHandler.cs
../referencesource/mscorlib/system/exception.cs
../../../external/corefx/src/Common/src/CoreLib/System/ExecutionEngineException.cs
../../../external/corefx/src/Common/src/CoreLib/System/FieldAccessException.cs
../../../external/corefx/src/Common/src/CoreLib/System/FlagsAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/FormatException.cs
../../../external/corefx/src/Common/src/CoreLib/System/FormattableString.cs
../referencesource/mscorlib/system/gc.cs
../../../external/corefx/src/Common/src/CoreLib/System/Guid.cs
../referencesource/mscorlib/system/iappdomain.cs
../referencesource/mscorlib/system/iappdomainsetup.cs
../../../external/corefx/src/Common/src/CoreLib/System/IAsyncResult.cs
../../../external/corefx/src/Common/src/CoreLib/System/ICloneable.cs
../../../external/corefx/src/Common/src/CoreLib/System/IComparable.cs
../../../external/corefx/src/Common/src/CoreLib/System/IConvertible.cs
../../../external/corefx/src/Common/src/CoreLib/System/ICustomFormatter.cs
../../../external/corefx/src/Common/src/CoreLib/System/IDisposable.cs
../../../external/corefx/src/Common/src/CoreLib/System/IEquatable.cs
../../../external/corefx/src/Common/src/CoreLib/System/IFormatProvider.cs
../../../external/corefx/src/Common/src/CoreLib/System/IFormattable.cs
../../../external/corefx/src/Common/src/CoreLib/System/InvalidCastException.cs
../../../external/corefx/src/Common/src/CoreLib/System/IndexOutOfRangeException.cs
../../../external/corefx/src/Common/src/CoreLib/System/InvalidOperationException.cs
../../../external/corefx/src/Common/src/CoreLib/System/InvalidProgramException.cs
../../../external/corefx/src/Common/src/CoreLib/System/InsufficientExecutionStackException.cs
../../../external/corert/src/System.Private.CoreLib/src/System/InsufficientMemoryException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Int16.cs
../../../external/corefx/src/Common/src/CoreLib/System/Int32.cs
../../../external/corefx/src/Common/src/CoreLib/System/Int64.cs
../../../external/corefx/src/Common/src/CoreLib/System/IObservable.cs
../../../external/corefx/src/Common/src/CoreLib/System/IObserver.cs
../../../external/corefx/src/Common/src/CoreLib/System/IProgress.cs
../referencesource/mscorlib/system/iserviceobjectprovider.cs
../referencesource/mscorlib/system/invalidtimezoneexception.cs
../../../external/corefx/src/Common/src/CoreLib/System/Lazy.cs
../referencesource/mscorlib/system/math.cs
../../../external/corefx/src/Common/src/CoreLib/System/MemberAccessException.cs
../../../external/corefx/src/Common/src/CoreLib/System/MethodAccessException.cs
../../../external/corefx/src/Common/src/CoreLib/System/MidpointRounding.cs
../../../external/corert/src/System.Private.CoreLib/src/System/MissingFieldException.cs
../../../external/corert/src/System.Private.CoreLib/src/System/MissingMemberException.cs
../../../external/corefx/src/Common/src/CoreLib/System/MissingMethodException.cs
../../../external/corefx/src/Common/src/CoreLib/System/MulticastNotSupportedException.cs
../../../external/corefx/src/Common/src/CoreLib/System/NonSerializedAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/NotFiniteNumberException.cs
../../../external/corefx/src/Common/src/CoreLib/System/NotImplementedException.cs
../referencesource/mscorlib/system/notsupportedexception.cs
../../../external/corefx/src/Common/src/CoreLib/System/NullReferenceException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Number.Formatting.cs
../../../external/corefx/src/Common/src/CoreLib/System/Number.NumberBuffer.cs
../../../external/corefx/src/Common/src/CoreLib/System/Number.Parsing.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Number.Unix.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Number.CoreRT.cs
../../../external/corefx/src/Common/src/CoreLib/System/ObjectDisposedException.cs
../../../external/corefx/src/Common/src/CoreLib/System/ObsoleteAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/OperationCanceledException.cs
../../../external/corert/src/System.Private.CoreLib/src/System/OutOfMemoryException.cs
../../../external/corefx/src/Common/src/CoreLib/System/OverflowException.cs
../../../external/corefx/src/Common/src/CoreLib/System/ParamArrayAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/ParamsArray.cs
../../../external/corefx/src/Common/src/CoreLib/System/PlatformNotSupportedException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Progress.cs
../referencesource/mscorlib/system/random.cs
../../../external/corefx/src/Common/src/CoreLib/System/RankException.cs
../referencesource/mscorlib/system/resid.cs
../referencesource/mscorlib/system/rttype.cs
../../../external/corefx/src/Common/src/CoreLib/System/SByte.cs
../referencesource/mscorlib/system/serializableattribute.cs
../referencesource/mscorlib/system/sharedstatics.cs
../../../external/corefx/src/Common/src/CoreLib/System/StackOverflowException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Single.cs
../referencesource/mscorlib/system/stringcomparer.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/StringFreezingAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/SystemException.cs
../../../external/corefx/src/Common/src/CoreLib/System/TimeoutException.cs
../referencesource/mscorlib/system/timespan.cs
../../../external/corefx/src/Common/src/CoreLib/System/ThreadAttributes.cs
../../../external/corefx/src/Common/src/CoreLib/System/ThreadStaticAttribute.cs
../referencesource/mscorlib/system/throwhelper.cs
../referencesource/mscorlib/system/timezoneinfo.cs
../referencesource/mscorlib/system/timezonenotfoundexception.cs
../referencesource/mscorlib/system/type.cs
../../../external/corefx/src/Common/src/CoreLib/System/TypeAccessException.cs
../../../external/corefx/src/Common/src/CoreLib/System/TypeInitializationException.cs
../referencesource/mscorlib/system/typeloadexception.cs
../referencesource/mscorlib/system/typedreference.cs
../../../external/corefx/src/Common/src/CoreLib/System/TypeUnloadedException.cs
../../../external/corefx/src/Common/src/CoreLib/System/UInt16.cs
../../../external/corefx/src/Common/src/CoreLib/System/UInt32.cs
../../../external/corefx/src/Common/src/CoreLib/System/UInt64.cs
../../../external/corefx/src/Common/src/CoreLib/System/UnauthorizedAccessException.cs
../../../external/corefx/src/Common/src/CoreLib/System/UnhandledExceptionEventArgs.cs
../../../external/corefx/src/Common/src/CoreLib/System/UnhandledExceptionEventHandler.cs
../referencesource/mscorlib/system/unityserializationholder.cs
../referencesource/mscorlib/system/unsafecharbuffer.cs
../referencesource/mscorlib/system/version.cs

../referencesource/mscorlib/system/AppContext/AppContext.cs
../referencesource/mscorlib/system/AppContext/AppContextSwitches.cs
ReferenceSources/AppContextDefaultValues.cs

../referencesource/mscorlib/system/collections/generic/comparer.cs
../referencesource/mscorlib/system/collections/generic/equalitycomparer.cs
../referencesource/mscorlib/system/collections/emptyreadonlydictionaryinternal.cs

../referencesource/mscorlib/system/diagnostics/assert.cs
../referencesource/mscorlib/system/diagnostics/assertfilter.cs
../referencesource/mscorlib/system/diagnostics/assertfilters.cs
../referencesource/mscorlib/system/diagnostics/conditionalattribute.cs
../referencesource/mscorlib/system/diagnostics/debuggerattributes.cs

../referencesource/mscorlib/system/diagnostics/codeanalysis/suppressmessageattribute.cs

../referencesource/mscorlib/system/diagnostics/contracts/contracts.cs
../referencesource/mscorlib/system/diagnostics/contracts/contractsbcl.cs

../referencesource/mscorlib/system/diagnostics/eventing/eventactivityoptions.cs
../referencesource/mscorlib/system/diagnostics/eventing/eventsourceexception.cs
../referencesource/mscorlib/system/diagnostics/eventing/winmeta.cs

../referencesource/mscorlib/system/diagnostics/eventing/TraceLogging/EventSourceOptions.cs
../referencesource/mscorlib/system/diagnostics/eventing/TraceLogging/TraceLoggingEventTraits.cs

../referencesource/mscorlib/system/globalization/bidicategory.cs
../referencesource/mscorlib/system/globalization/calendar.cs
../referencesource/mscorlib/system/globalization/calendaralgorithmtype.cs
../referencesource/mscorlib/system/globalization/CalendricalCalculationsHelper.cs
../referencesource/mscorlib/system/globalization/calendardata.cs
../referencesource/mscorlib/system/globalization/calendarweekrule.cs
../referencesource/mscorlib/system/globalization/charunicodeinfo.cs
# TODO: make CoreFX's CharUnicodeInfo BE compatible
#../../../external/corefx/src/Common/src/CoreLib/System/Globalization/CharUnicodeInfo.cs
#../../../external/corert/src/System.Private.CoreLib/src/System/Globalization/CharUnicodeInfoData.cs
../referencesource/mscorlib/system/globalization/chineselunisolarcalendar.cs
#../referencesource/mscorlib/system/globalization/compareinfo.cs
../referencesource/mscorlib/system/globalization/culturenotfoundexception.cs
../referencesource/mscorlib/system/globalization/culturetypes.cs
../referencesource/mscorlib/system/globalization/daylighttime.cs
../referencesource/mscorlib/system/globalization/datetimeformat.cs
../referencesource/mscorlib/system/globalization/datetimeformatinfo.cs
../referencesource/mscorlib/system/globalization/datetimeformatinfoscanner.cs
../referencesource/mscorlib/system/globalization/datetimeparse.cs
../referencesource/mscorlib/system/globalization/datetimestyles.cs
../referencesource/mscorlib/system/globalization/digitshapes.cs
../referencesource/mscorlib/system/globalization/eastasianlunisolarcalendar.cs
../referencesource/mscorlib/system/globalization/globalizationassembly.cs
../referencesource/mscorlib/system/globalization/gregoriancalendar.cs
../referencesource/mscorlib/system/globalization/gregoriancalendarhelper.cs
../referencesource/mscorlib/system/globalization/gregoriancalendartypes.cs
../referencesource/mscorlib/system/globalization/hebrewcalendar.cs
../referencesource/mscorlib/system/globalization/hebrewnumber.cs
../referencesource/mscorlib/system/globalization/hijricalendar.cs
../referencesource/mscorlib/system/globalization/japanesecalendar.cs
../referencesource/mscorlib/system/globalization/japaneselunisolarcalendar.cs
../referencesource/mscorlib/system/globalization/juliancalendar.cs
../referencesource/mscorlib/system/globalization/koreancalendar.cs
../referencesource/mscorlib/system/globalization/koreanlunisolarcalendar.cs
../referencesource/mscorlib/system/globalization/numberstyles.cs
../referencesource/mscorlib/system/globalization/numberformatinfo.cs
../referencesource/mscorlib/system/globalization/Persiancalendar.cs
../referencesource/mscorlib/system/globalization/sortversion.cs
../referencesource/mscorlib/system/globalization/stringinfo.cs
../referencesource/mscorlib/system/globalization/taiwancalendar.cs
../referencesource/mscorlib/system/globalization/taiwanlunisolarcalendar.cs
../referencesource/mscorlib/system/globalization/textelementenumerator.cs
../../../external/corefx/src/Common/src/CoreLib/System/Globalization/TimeSpanFormat.cs
../../../external/corefx/src/Common/src/CoreLib/System/Globalization/InternalGlobalizationHelper.cs
../../../external/corefx/src/Common/src/CoreLib/System/Globalization/TimeSpanParse.cs
../../../external/corefx/src/Common/src/CoreLib/System/Globalization/TimeSpanStyles.cs

../referencesource/mscorlib/system/globalization/textinfo.cs
../referencesource/mscorlib/system/globalization/thaibuddhistcalendar.cs
../referencesource/mscorlib/system/globalization/umalquracalendar.cs
../referencesource/mscorlib/system/globalization/unicodecategory.cs

../referencesource/mscorlib/system/io/__error.cs
../referencesource/mscorlib/system/io/__hresults.cs
../referencesource/mscorlib/system/io/binaryreader.cs
../referencesource/mscorlib/system/io/binarywriter.cs
../referencesource/mscorlib/system/io/bufferedstream.cs
../referencesource/mscorlib/system/io/directory.cs
../referencesource/mscorlib/system/io/directorynotfoundexception.cs
../referencesource/mscorlib/system/io/drivenotfoundexception.cs
../referencesource/mscorlib/system/io/endofstreamexception.cs
../referencesource/mscorlib/system/io/ioexception.cs
../referencesource/mscorlib/system/io/fileinfo.cs
../referencesource/mscorlib/system/io/fileloadexception.cs
../referencesource/mscorlib/system/io/filenotfoundexception.cs
../referencesource/mscorlib/system/io/filesysteminfo.cs
../referencesource/mscorlib/system/io/filesystemenumerable.cs
../referencesource/mscorlib/system/io/memorystream.cs
../referencesource/mscorlib/system/io/pathtoolongexception.cs
../referencesource/mscorlib/system/io/pinnedbuffermemorystream.cs
../referencesource/mscorlib/system/io/stream.cs
../referencesource/mscorlib/system/io/streamreader.cs
../referencesource/mscorlib/system/io/streamwriter.cs
../referencesource/mscorlib/system/io/stringreader.cs
../referencesource/mscorlib/system/io/stringwriter.cs
../referencesource/mscorlib/system/io/textreader.cs
../referencesource/mscorlib/system/io/textwriter.cs
../referencesource/mscorlib/system/io/unmanagedmemoryaccessor.cs
../referencesource/mscorlib/system/io/unmanagedmemorystream.cs
../referencesource/mscorlib/system/io/unmanagedmemorystreamwrapper.cs

../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AmbiguousMatchException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyAlgorithmIdAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyCompanyAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyConfigurationAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyConfigurationAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyContentType.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyCopyrightAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyCultureAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyDefaultAliasAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyDelaySignAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyDescriptionAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyFileVersionAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyFlagsAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyInformationalVersionAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyKeyFileAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyKeyNameAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyMetadataAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyNameFlags.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyProductAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblySignatureKeyAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyTitleAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyTrademarkAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyTrademarkAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/AssemblyVersionAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/BindingFlags.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/CallingConventions.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/DefaultMemberAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/EventAttributes.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/FieldAttributes.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/GenericParameterAttributes.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/ICustomAttributeProvider.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/InterfaceMapping.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/IntrospectionExtensions.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/InvalidFilterCriteriaException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/IReflect.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/IReflectableType.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/MemberFilter.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/MemberTypes.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/MethodAttributes.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/MethodImplAttributes.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/ObfuscateAssemblyAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/ObfuscationAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/ParameterAttributes.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/ParameterModifier.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/ProcessorArchitecture.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/PropertyAttributes.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/ReflectionContext.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/ReflectionTypeLoadException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/ResourceAttributes.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/TargetException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/TargetInvocationException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/TargetParameterCountException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/TypeAttributes.cs
../../../external/corefx/src/Common/src/CoreLib/System/Reflection/TypeFilter.cs

../referencesource/mscorlib/system/reflection/assemblynameproxy.cs
../referencesource/mscorlib/system/reflection/binder.cs
../referencesource/mscorlib/system/reflection/CustomAttributeExtensions.cs
../referencesource/mscorlib/system/reflection/manifestresourceinfo.cs
../referencesource/mscorlib/system/reflection/mdimport.cs
../referencesource/mscorlib/system/reflection/memberinfo.cs
../referencesource/mscorlib/system/reflection/memberinfoserializationholder.cs
../referencesource/mscorlib/system/reflection/methodbase.cs
../referencesource/mscorlib/system/reflection/methodbody.cs
../referencesource/mscorlib/system/reflection/methodinfo.cs
../referencesource/mscorlib/system/reflection/missing.cs
../referencesource/mscorlib/system/reflection/pointer.cs
../referencesource/mscorlib/system/reflection/RuntimeReflectionExtensions.cs
../referencesource/mscorlib/system/reflection/typedelegator.cs
../referencesource/mscorlib/system/reflection/typeinfo.cs

../referencesource/mscorlib/system/reflection/emit/methodbuilder.cs
../referencesource/mscorlib/system/reflection/emit/symboltype.cs

../referencesource/mscorlib/system/resources/__fastresourcecomparer.cs
../referencesource/mscorlib/system/resources/__hresults.cs
../referencesource/mscorlib/system/resources/filebasedresourcegroveler.cs
../referencesource/mscorlib/system/resources/iresourcegroveler.cs
../referencesource/mscorlib/system/resources/iresourcereader.cs
../referencesource/mscorlib/system/resources/iresourcewriter.cs
../referencesource/mscorlib/system/resources/looselylinkedresourcereference.cs
../referencesource/mscorlib/system/resources/manifestbasedresourcegroveler.cs
../referencesource/mscorlib/system/resources/missingmanifestresourceexception.cs
../referencesource/mscorlib/system/resources/missingsatelliteassemblyexception.cs
../referencesource/mscorlib/system/resources/neutralresourceslanguageattribute.cs
../referencesource/mscorlib/system/resources/resourcefallbackmanager.cs
../referencesource/mscorlib/system/resources/resourcemanager.cs
../referencesource/mscorlib/system/resources/resourcereader.cs
../referencesource/mscorlib/system/resources/resourceset.cs
../referencesource/mscorlib/system/resources/resourcetypecode.cs
../referencesource/mscorlib/system/resources/resourcewriter.cs
../referencesource/mscorlib/system/resources/runtimeresourceset.cs
../referencesource/mscorlib/system/resources/satellitecontractversionattribute.cs
../referencesource/mscorlib/system/resources/ultimateresourcefallbacklocation.cs

../referencesource/mscorlib/system/runtime/NgenServicingAttributes.cs
../referencesource/mscorlib/system/runtime/ProfileOptimization.cs

../referencesource/mscorlib/system/runtime/exceptionservices/corruptingexceptioncommon.cs
../referencesource/mscorlib/system/runtime/exceptionservices/exceptionnotification.cs
../referencesource/mscorlib/system/runtime/exceptionservices/exceptionservicescommon.cs

../referencesource/mscorlib/system/runtime/interopservices/arraywithoffset.cs
../referencesource/mscorlib/system/runtime/interopservices/attributes.cs
../referencesource/mscorlib/system/runtime/interopservices/bstrwrapper.cs
../referencesource/mscorlib/system/runtime/interopservices/callingconvention.cs
../referencesource/mscorlib/system/runtime/interopservices/charset.cs
../referencesource/mscorlib/system/runtime/interopservices/comexception.cs
../referencesource/mscorlib/system/runtime/interopservices/commembertype.cs
../referencesource/mscorlib/system/runtime/interopservices/criticalhandle.cs
../referencesource/mscorlib/system/runtime/interopservices/currencywrapper.cs
../referencesource/mscorlib/system/runtime/interopservices/dispatchwrapper.cs
../referencesource/mscorlib/system/runtime/interopservices/errorwrapper.cs
../referencesource/mscorlib/system/runtime/interopservices/externalexception.cs
../referencesource/mscorlib/system/runtime/interopservices/handleref.cs
../referencesource/mscorlib/system/runtime/interopservices/icustomadapter.cs
../referencesource/mscorlib/system/runtime/interopservices/icustomfactory.cs
../referencesource/mscorlib/system/runtime/interopservices/icustommarshaler.cs
../referencesource/mscorlib/system/runtime/interopservices/icustomqueryinterface.cs
../referencesource/mscorlib/system/runtime/interopservices/invalidcomobjectexception.cs
../referencesource/mscorlib/system/runtime/interopservices/invalidolevarianttypeexception.cs
../referencesource/mscorlib/system/runtime/interopservices/iregistrationservices.cs
../referencesource/mscorlib/system/runtime/interopservices/layoutkind.cs
../referencesource/mscorlib/system/runtime/interopservices/marshaldirectiveexception.cs
../referencesource/mscorlib/system/runtime/interopservices/objectcreationdelegate.cs
../referencesource/mscorlib/system/runtime/interopservices/runtimeenvironment.cs
../referencesource/mscorlib/system/runtime/interopservices/safearrayrankmismatchexception.cs
../referencesource/mscorlib/system/runtime/interopservices/safearraytypemismatchexception.cs
../referencesource/mscorlib/system/runtime/interopservices/safehandle.cs
../referencesource/mscorlib/system/runtime/interopservices/sehexception.cs
../referencesource/mscorlib/system/runtime/interopservices/ucomitypeinfo.cs
../referencesource/mscorlib/system/runtime/interopservices/ucomienumconnections.cs
../referencesource/mscorlib/system/runtime/interopservices/unknownwrapper.cs
../referencesource/mscorlib/system/runtime/interopservices/variantWrapper.cs

../referencesource/mscorlib/system/runtime/interopservices/ComTypes/ibindctx.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/iconnectionpoint.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/iconnectionpointcontainer.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/ienumconnectionpoints.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/ienumconnections.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/ienumerable.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/ienumerator.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/ienummoniker.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/ienumstring.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/ienumvariant.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/iexpando.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/imoniker.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/ipersistfile.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/ireflect.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/irunningobjecttable.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/istream.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/itypecomp.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/itypeinfo.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/itypeinfo2.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/itypelib.cs
../referencesource/mscorlib/system/runtime/interopservices/ComTypes/itypelib2.cs

../referencesource/mscorlib/system/runtime/interopservices/expando/iexpando.cs

../referencesource/mscorlib/system/runtime/interopservices/windowsruntime/attributes.cs
../referencesource/mscorlib/system/runtime/interopservices/windowsruntime/eventregistrationtoken.cs
../referencesource/mscorlib/system/runtime/interopservices/windowsruntime/eventregistrationtokentable.cs
../referencesource/mscorlib/system/runtime/interopservices/windowsruntime/iactivationfactory.cs
../referencesource/mscorlib/system/runtime/interopservices/windowsruntime/irestrictederrorinfo.cs
../referencesource/mscorlib/system/runtime/interopservices/windowsruntime/windowsruntimemarshal.cs

../referencesource/mscorlib/system/runtime/reliability/criticalfinalizerobject.cs
../referencesource/mscorlib/system/runtime/reliability/prepreparemethodattribute.cs
../referencesource/mscorlib/system/runtime/reliability/reliabilitycontractattribute.cs

../referencesource/mscorlib/system/runtime/compilerservices/assemblyattributesgohere.cs
../referencesource/mscorlib/system/runtime/compilerservices/assemblysettingattributes.cs
../referencesource/mscorlib/system/runtime/compilerservices/AsyncMethodBuilder.cs
../referencesource/mscorlib/system/runtime/compilerservices/callingconvention.cs
../referencesource/mscorlib/system/runtime/compilerservices/compilationrelaxations.cs
../referencesource/mscorlib/system/runtime/compilerservices/compilermarshaloverride.cs
../referencesource/mscorlib/system/runtime/compilerservices/decoratednameattribute.cs
../referencesource/mscorlib/system/runtime/compilerservices/hascopysemanticsattribute.cs
../referencesource/mscorlib/system/runtime/compilerservices/idispatchconstantattribute.cs
../referencesource/mscorlib/system/runtime/compilerservices/internalsvisibletoattribute.cs
../referencesource/mscorlib/system/runtime/compilerservices/isboxed.cs
../referencesource/mscorlib/system/runtime/compilerservices/isbyvalue.cs
../referencesource/mscorlib/system/runtime/compilerservices/iscopyconstructed.cs
../referencesource/mscorlib/system/runtime/compilerservices/isexplicitlydereferenced.cs
../referencesource/mscorlib/system/runtime/compilerservices/isimplicitlydereferenced.cs
../referencesource/mscorlib/system/runtime/compilerservices/isjitintrinsic.cs
../referencesource/mscorlib/system/runtime/compilerservices/islong.cs
../referencesource/mscorlib/system/runtime/compilerservices/ispinned.cs
../referencesource/mscorlib/system/runtime/compilerservices/issignunspecifiedbyte.cs
../referencesource/mscorlib/system/runtime/compilerservices/isudtreturn.cs
../referencesource/mscorlib/system/runtime/compilerservices/iunknownconstantattribute.cs
../referencesource/mscorlib/system/runtime/compilerservices/methodimplattribute.cs
../referencesource/mscorlib/system/runtime/compilerservices/nativecppclassattribute.cs
../referencesource/mscorlib/system/runtime/compilerservices/requiredattributeattribute.cs
../referencesource/mscorlib/system/runtime/compilerservices/scopelessenumattribute.cs
../referencesource/mscorlib/system/runtime/compilerservices/suppressmergecheckattribute.cs
../referencesource/mscorlib/system/runtime/compilerservices/typedependencyattribute.cs
../referencesource/mscorlib/system/runtime/compilerservices/YieldAwaitable.cs

../referencesource/mscorlib/system/security/attributes.cs
../referencesource/mscorlib/system/security/securitycontext.cs
../referencesource/mscorlib/system/security/securitydocument.cs
../referencesource/mscorlib/system/security/safesecurityhandles.cs

../referencesource/mscorlib/system/security/claims/Claim.cs
../referencesource/mscorlib/system/security/claims/ClaimsIdentity.cs
../referencesource/mscorlib/system/security/claims/ClaimsPrincipal.cs
../../../external/corefx/src/System.Security.Claims/src/System/Security/Claims/ClaimTypes.cs
../referencesource/mscorlib/system/security/claims/ClaimValueTypes.cs
../referencesource/mscorlib/system/security/claims/RoleClaimProvider.cs

../referencesource/mscorlib/system/security/cryptography/aes.cs
../referencesource/mscorlib/system/security/cryptography/asymmetricalgorithm.cs
../referencesource/mscorlib/system/security/cryptography/asymmetrickeyexchangedeformatter.cs
../referencesource/mscorlib/system/security/cryptography/asymmetrickeyexchangeformatter.cs
../referencesource/mscorlib/system/security/cryptography/asymmetricsignaturedeformatter.cs
../referencesource/mscorlib/system/security/cryptography/asymmetricsignatureformatter.cs
../referencesource/mscorlib/system/security/cryptography/base64transforms.cs
../referencesource/mscorlib/system/security/cryptography/crypto.cs
../referencesource/mscorlib/system/security/cryptography/cryptoapitransform.cs
../referencesource/mscorlib/system/security/cryptography/cryptostream.cs
../referencesource/mscorlib/system/security/cryptography/derivebytes.cs
../referencesource/mscorlib/system/security/cryptography/des.cs
../referencesource/mscorlib/system/security/cryptography/descryptoserviceprovider.cs
../referencesource/mscorlib/system/security/cryptography/dsa.cs
../referencesource/mscorlib/system/security/cryptography/dsasignaturedeformatter.cs
../referencesource/mscorlib/system/security/cryptography/dsasignatureformatter.cs
../referencesource/mscorlib/system/security/cryptography/hashalgorithm.cs
../referencesource/mscorlib/system/security/cryptography/HashAlgorithmName.cs
../referencesource/mscorlib/system/security/cryptography/hmac.cs
../referencesource/mscorlib/system/security/cryptography/hmacmd5.cs
../referencesource/mscorlib/system/security/cryptography/hmacripemd160.cs
../referencesource/mscorlib/system/security/cryptography/hmacsha1.cs
../referencesource/mscorlib/system/security/cryptography/hmacsha256.cs
../referencesource/mscorlib/system/security/cryptography/hmacsha384.cs
../referencesource/mscorlib/system/security/cryptography/hmacsha512.cs
../referencesource/mscorlib/system/security/cryptography/icryptotransform.cs
../referencesource/mscorlib/system/security/cryptography/keyedhashalgorithm.cs
../referencesource/mscorlib/system/security/cryptography/mactripledes.cs
../referencesource/mscorlib/system/security/cryptography/maskgenerationmethod.cs
../referencesource/mscorlib/system/security/cryptography/md5.cs
../referencesource/mscorlib/system/security/cryptography/passwordderivebytes.cs
../referencesource/mscorlib/system/security/cryptography/pkcs1maskgenerationmethod.cs
../referencesource/mscorlib/system/security/cryptography/randomnumbergenerator.cs
../referencesource/mscorlib/system/security/cryptography/rc2.cs
../referencesource/mscorlib/system/security/cryptography/rc2cryptoserviceprovider.cs
../referencesource/mscorlib/system/security/cryptography/rfc2898derivebytes.cs
../referencesource/mscorlib/system/security/cryptography/rijndael.cs
../referencesource/mscorlib/system/security/cryptography/rijndaelmanaged.cs
../referencesource/mscorlib/system/security/cryptography/rijndaelmanagedtransform.cs
../referencesource/mscorlib/system/security/cryptography/ripemd160.cs
../referencesource/mscorlib/system/security/cryptography/ripemd160managed.cs
../referencesource/mscorlib/system/security/cryptography/rsa.cs
../referencesource/mscorlib/system/security/cryptography/rsacryptoserviceprovider.cs
../referencesource/mscorlib/system/security/cryptography/rsaoaepkeyexchangedeformatter.cs
../referencesource/mscorlib/system/security/cryptography/rsaoaepkeyexchangeformatter.cs
../referencesource/mscorlib/system/security/cryptography/rsapkcs1keyexchangedeformatter.cs
../referencesource/mscorlib/system/security/cryptography/rsapkcs1keyexchangeformatter.cs
../referencesource/mscorlib/system/security/cryptography/RSAEncryptionPadding.cs
../referencesource/mscorlib/system/security/cryptography/RSAEncryptionPaddingMode.cs
../referencesource/mscorlib/system/security/cryptography/RSASignaturePadding.cs
../referencesource/mscorlib/system/security/cryptography/RSASignaturePaddingMode.cs
../referencesource/mscorlib/system/security/cryptography/sha1.cs
../referencesource/mscorlib/system/security/cryptography/sha1managed.cs
../referencesource/mscorlib/system/security/cryptography/sha256.cs
../referencesource/mscorlib/system/security/cryptography/sha256managed.cs
../referencesource/mscorlib/system/security/cryptography/sha384.cs
../referencesource/mscorlib/system/security/cryptography/sha384managed.cs
../referencesource/mscorlib/system/security/cryptography/sha512.cs
../referencesource/mscorlib/system/security/cryptography/sha512managed.cs
../referencesource/mscorlib/system/security/cryptography/signaturedescription.cs
../referencesource/mscorlib/system/security/cryptography/symmetricalgorithm.cs
../referencesource/mscorlib/system/security/cryptography/tripledes.cs
../referencesource/mscorlib/system/security/cryptography/tripledescryptoserviceprovider.cs
../referencesource/mscorlib/system/security/cryptography/utils.cs

../referencesource/mscorlib/system/security/cryptography/x509certificates/x509utils.cs

../referencesource/mscorlib/system/security/principal/genericidentity.cs

../referencesource/mscorlib/system/security/util/hex.cs
../referencesource/mscorlib/system/security/util/parser.cs
../referencesource/mscorlib/system/security/util/tokenizer.cs

../../../external/corefx/src/Common/src/CoreLib/System/ISpanFormattable.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/ASCIIEncoding.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/Decoder.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/DecoderBestFitFallback.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/DecoderExceptionFallback.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/DecoderFallback.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/DecoderNLS.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/DecoderReplacementFallback.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/Encoder.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/EncoderBestFitFallback.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/EncoderExceptionFallback.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/EncoderFallback.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/EncoderNLS.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/EncoderReplacementFallback.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/EncodingInfo.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/EncodingNLS.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/EncodingProvider.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/Latin1Encoding.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/NormalizationForm.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/UnicodeEncoding.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/UTF32Encoding.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/UTF7Encoding.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/UTF8Encoding.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/ValueStringBuilder.cs
../referencesource/mscorlib/system/text/codepageencoding.cs
../referencesource/mscorlib/system/text/encoding.cs
../referencesource/mscorlib/system/text/mlangcodepageencoding.cs
../referencesource/mscorlib/system/text/surrogateencoder.cs

../../../external/corefx/src/Common/src/CoreLib/System/ISpanFormattable.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/StringBuilder.cs
../../../external/corefx/src/Common/src/CoreLib/System/Text/StringBuilderCache.cs

../referencesource/mscorlib/system/runtime/remoting/callcontext.cs

../referencesource/mscorlib/system/runtime/serialization/deserializationeventhandler.cs
../referencesource/mscorlib/system/runtime/serialization/formatter.cs
../referencesource/mscorlib/system/runtime/serialization/formatterconverter.cs
../referencesource/mscorlib/system/runtime/serialization/formatterservices.cs
../referencesource/mscorlib/system/runtime/serialization/ideserializationcallback.cs
../referencesource/mscorlib/system/runtime/serialization/iformatter.cs
../referencesource/mscorlib/system/runtime/serialization/iformatterconverter.cs
../referencesource/mscorlib/system/runtime/serialization/iobjectreference.cs
../referencesource/mscorlib/system/runtime/serialization/iserializable.cs
../referencesource/mscorlib/system/runtime/serialization/iserializationsurrogate.cs
../referencesource/mscorlib/system/runtime/serialization/isurrogateselector.cs
../referencesource/mscorlib/system/runtime/serialization/memberholder.cs
../referencesource/mscorlib/system/runtime/serialization/objectclonehelper.cs
../referencesource/mscorlib/system/runtime/serialization/objectidgenerator.cs
../referencesource/mscorlib/system/runtime/serialization/objectmanager.cs
../referencesource/mscorlib/system/runtime/serialization/safeserializationmanager.cs
../referencesource/mscorlib/system/runtime/serialization/serializationattributes.cs
../referencesource/mscorlib/system/runtime/serialization/serializationbinder.cs
../referencesource/mscorlib/system/runtime/serialization/serializationeventscache.cs
../referencesource/mscorlib/system/runtime/serialization/serializationexception.cs
../referencesource/mscorlib/system/runtime/serialization/serializationfieldinfo.cs
../referencesource/mscorlib/system/runtime/serialization/serializationinfo.cs
../referencesource/mscorlib/system/runtime/serialization/serializationinfoenumerator.cs
../referencesource/mscorlib/system/runtime/serialization/serializationobjectmanager.cs
../referencesource/mscorlib/system/runtime/serialization/streamingcontext.cs
../referencesource/mscorlib/system/runtime/serialization/surrogateselector.cs
../referencesource/mscorlib/system/runtime/serialization/valuetypefixupinfo.cs

../referencesource/mscorlib/system/runtime/serialization/formatters/binary/binarycommonclasses.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/binary/binaryconverter.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/binary/binaryenums.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/binary/binaryformatter.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/binary/binaryformatterwriter.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/binary/binarymethodmessage.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/binary/binaryobjectinfo.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/binary/binaryobjectreader.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/binary/binaryobjectwriter.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/binary/binaryparser.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/binary/binaryutilclasses.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/commonenums.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/ifieldinfo.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/isoapmessage.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/sertrace.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/soapfault.cs
../referencesource/mscorlib/system/runtime/serialization/formatters/soapmessage.cs

../referencesource/mscorlib/system/runtime/versioning/componentguaranteesattribute.cs
../referencesource/mscorlib/system/runtime/versioning/multitargetinghelpers.cs
../referencesource/mscorlib/system/runtime/versioning/NonVersionableAttribute.cs
../referencesource/mscorlib/system/runtime/versioning/resourceattributes.cs
../referencesource/mscorlib/system/runtime/versioning/targetframeworkattribute.cs
../referencesource/mscorlib/system/runtime/versioning/targetframeworkid.cs

../referencesource/mscorlib/system/threading/abandonedmutexexception.cs
../referencesource/mscorlib/system/threading/apartmentstate.cs
../referencesource/mscorlib/system/threading/asynclocal.cs
../referencesource/mscorlib/system/threading/autoresetevent.cs
../referencesource/mscorlib/system/threading/CancellationToken.cs
../referencesource/mscorlib/system/threading/CancellationTokenSource.cs
../referencesource/mscorlib/system/threading/CountdownEvent.cs
../referencesource/mscorlib/system/threading/eventresetmode.cs
../referencesource/mscorlib/system/threading/eventwaithandle.cs
../referencesource/mscorlib/system/threading/executioncontext.cs
../referencesource/mscorlib/system/threading/LazyInitializer.cs
../referencesource/mscorlib/system/threading/lockrecursionexception.cs
../referencesource/mscorlib/system/threading/manualresetevent.cs
../referencesource/mscorlib/system/threading/ManualResetEventSlim.cs
../referencesource/mscorlib/system/threading/monitor.cs
../referencesource/mscorlib/system/threading/parameterizedthreadstart.cs
../referencesource/mscorlib/system/threading/semaphorefullexception.cs
../referencesource/mscorlib/system/threading/SemaphoreSlim.cs
../referencesource/mscorlib/system/threading/sendorpostcallback.cs
../referencesource/mscorlib/system/threading/SpinLock.cs
../referencesource/mscorlib/system/threading/SpinWait.cs
../referencesource/mscorlib/system/threading/synchronizationcontext.cs
../referencesource/mscorlib/system/threading/synchronizationlockexception.cs
../referencesource/mscorlib/system/threading/thread.cs
../referencesource/mscorlib/system/threading/threadabortexception.cs
../referencesource/mscorlib/system/threading/threadinterruptedexception.cs
../referencesource/mscorlib/system/threading/ThreadLocal.cs
../referencesource/mscorlib/system/threading/threadpriority.cs
../referencesource/mscorlib/system/threading/threadstart.cs
../referencesource/mscorlib/system/threading/threadstartexception.cs
../referencesource/mscorlib/system/threading/threadstate.cs
../referencesource/mscorlib/system/threading/threadstateexception.cs
../referencesource/mscorlib/system/threading/timeout.cs
../referencesource/mscorlib/system/threading/waithandlecannotbeopenedexception.cs
../referencesource/mscorlib/system/threading/threadpool.cs
../referencesource/mscorlib/system/threading/waithandle.cs
../referencesource/mscorlib/system/threading/waithandleExtensions.cs

../referencesource/mscorlib/system/threading/Tasks/AsyncCausalityTracer.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Threading/CancellationTokenRegistration.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Threading/Tasks/TaskExceptionHolder.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Threading/Tasks/ConcurrentExclusiveSchedulerPair.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Threading/Tasks/ProducerConsumerQueues.cs
../../../external/corefx/src/Common/src/CoreLib/System/Threading/Tasks/TaskToApm.cs

../referencesource/mscorlib/microsoft/win32/safehandles/safefilehandle.cs
../referencesource/mscorlib/microsoft/win32/safehandles/safefindhandle.cs
../referencesource/mscorlib/microsoft/win32/safehandles/saferegistryhandle.cs
../referencesource/mscorlib/microsoft/win32/safehandles/safewaithandle.cs
../referencesource/mscorlib/microsoft/win32/safehandles/win32safehandles.cs

coreclr/SorterArray.cs

corefx/AwaitTaskContinuation.cs
corefx/SynchronizationContext.cs
corefx/SR.cs
corefx/SR.missing.cs
corefx/CompareInfo.cs
corefx/GlobalizationMode.cs
corefx/Interop.GetRandomBytes.Mono.cs
corefx/RuntimeImports.cs
corefx/TimeSpanParse.cs

corert/DependencyReductionRootAttribute.cs
corert/AddrofIntrinsics.cs
corert/EnvironmentAugments.cs
corert/RelocatedTypeAttribute.cs
corert/RuntimeThread.cs
corert/Stream.cs
corert/Task.cs
corert/ThreadPool.cs
corert/ThreadPoolBoundHandle.platformnotsupported.cs
corert/PreAllocatedOverlapped.platformnotsupported.cs
corert/RuntimeAugments.cs
../../../external/corert/src/Common/src/Interop/Unix/System.Private.CoreLib.Native/Interop.Number.cs

../../../external/corert/src/Common/src/System/Collections/Generic/LowLevelList.cs

../../../external/corert/src/Common/src/System/Numerics/Hashing/HashHelpers.cs

../../../external/corert/src/System.Private.CoreLib/src/Internal/Runtime/Augments/AsyncCausalityTracer.cs
../../../external/corert/src/System.Private.CoreLib/src/Internal/Runtime/Augments/TaskTraceCallbacks.cs

../../../external/corert/src/System.Private.CoreLib/src/System/Array.cs
../../../external/corert/src/System.Private.CoreLib/src/System/ByReference.cs
# TODO: Should all come from shared
../../../external/corert/src/System.Private.CoreLib/src/System/Collections/Generic/ArraySortHelper.cs

../../../external/corert/src/System.Private.CoreLib/src/System/Globalization/GlobalizationMode.cs

../../../external/corert/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/ReflectionBlockedAttribute.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Runtime/CompilerServices/TaskAwaiter.cs

../../../external/corert/src/System.Private.CoreLib/src/System/Threading/LockHolder.cs

../../../external/corert/src/System.Private.CoreLib/src/System/Threading/Tasks/DebuggerSupport.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Threading/Tasks/DebuggerSupport.Dummy.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Threading/Tasks/TaskFactory.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Threading/Tasks/FutureFactory.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Threading/Tasks/TaskScheduler.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Threading/Tasks/Task.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Threading/Tasks/Future.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Threading/Tasks/TaskContinuation.cs
../../../external/corert/src/System.Private.CoreLib/src/System/Threading/Tasks/ThreadPoolTaskScheduler.cs

../../../external/corert/src/System.Private.CoreLib/src/Internal/Threading/Tasks/Tracing/TaskTrace.cs

../../../external/corert/src/System.Private.Interop/src/InteropExtensions/Lock.cs


../../../external/corefx/src/System.Runtime.Extensions/src/System/Collections/ArrayList.cs
../../../external/corefx/src/System.Collections.NonGeneric/src/System/Collections/*.cs
../../../external/corefx/src/System.Collections/src/System/Collections/BitArray.cs
../../../external/corefx/src/System.Collections/src/System/Collections/StructuralComparisons.cs
../../../external/corefx/src/Common/src/System/Collections/CompatibleComparer.cs

../../../external/corefx/src/System.Runtime.Extensions/src/System/Collections/Hashtable.cs
../../../external/corefx/src/System.Runtime.Extensions/src/System/Collections/IHashCodeProvider.cs
../../../external/corefx/src/System.ObjectModel/src/System/Collections/Generic/DebugView.cs
../../../external/corefx/src/System.ObjectModel/src/System/Collections/ObjectModel/KeyedCollection.cs
../../../external/corefx/src/System.ObjectModel/src/System/Collections/ObjectModel/ReadOnlyDictionary.cs

../../../external/corefx/src/Common/src/CoreLib/System/Action.cs
../../../external/corefx/src/Common/src/CoreLib/System/ArraySegment.cs
../../../external/corefx/src/Common/src/CoreLib/System/Gen2GcCallback.cs
../../../external/corefx/src/Common/src/CoreLib/System/HashCode.cs
../../../external/corefx/src/Common/src/CoreLib/System/HResults.cs
../../../external/corefx/src/Common/src/CoreLib/System/MathF.cs
../../../external/corefx/src/Common/src/CoreLib/System/Marvin.cs
../../../external/corefx/src/Common/src/CoreLib/System/Memory.cs
../../../external/corefx/src/Common/src/CoreLib/System/MemoryDebugView.cs
../../../external/corefx/src/Common/src/CoreLib/System/MemoryExtensions.cs
../../../external/corefx/src/Common/src/CoreLib/System/MemoryExtensions.Fast.cs
../../../external/corefx/src/Common/src/CoreLib/System/ReadOnlyMemory.cs
../../../external/corefx/src/Common/src/CoreLib/System/ReadOnlySpan.cs
../../../external/corefx/src/Common/src/CoreLib/System/ReadOnlySpan.Fast.cs
../../../external/corefx/src/Common/src/CoreLib/System/Span.cs
../../../external/corefx/src/Common/src/CoreLib/System/Span.Fast.cs
../../../external/corefx/src/Common/src/CoreLib/System/SpanDebugView.cs
../../../external/corefx/src/Common/src/CoreLib/System/SpanHelpers*.cs
../../../external/corefx/src/Common/src/CoreLib/System/String.cs
../../../external/corefx/src/Common/src/CoreLib/System/String.Comparison.cs
../../../external/corefx/src/Common/src/CoreLib/System/String.Manipulation.cs
../../../external/corefx/src/Common/src/CoreLib/System/String.Searching.cs
../../../external/corefx/src/Common/src/CoreLib/System/StringSplitOptions.cs
../../../external/corefx/src/Common/src/CoreLib/System/Tuple.cs
../../../external/corefx/src/Common/src/CoreLib/System/TupleExtensions.cs
../../../external/corefx/src/Common/src/CoreLib/System/ValueTuple.cs
../../../external/corefx//src/Common/src/CoreLib/System/Nullable.cs

../../../external/corefx/src/Common/src/CoreLib/System/Buffers/ArrayPool.cs
../../../external/corefx/src/Common/src/CoreLib/System/Buffers/ArrayPoolEventSource.cs
../../../external/corefx/src/Common/src/CoreLib/System/Buffers/ConfigurableArrayPool.cs
../../../external/corefx/src/Common/src/CoreLib/System/Buffers/IMemoryOwner.cs
../../../external/corefx/src/Common/src/CoreLib/System/Buffers/IPinnable.cs
../../../external/corefx/src/Common/src/CoreLib/System/Buffers/MemoryHandle.cs
../../../external/corefx/src/Common/src/CoreLib/System/Buffers/MemoryManager.cs
../../../external/corefx/src/Common/src/CoreLib/System/Buffers/TlsOverPerCoreLockedStacksArrayPool.cs
../../../external/corefx/src/Common/src/CoreLib/System/Buffers/Utilities.cs

../../../external/corefx/src/Common/src/CoreLib/System/Collections/HashHelpers.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/Comparer.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/DictionaryEntry.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/ICollection.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/IComparer.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/IDictionary.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/IDictionaryEnumerator.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/IEnumerable.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/IEnumerator.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/IEqualityComparer.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/IList.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/IStructuralComparable.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/IStructuralEquatable.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/ListDictionaryInternal.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/DictionaryEntry.cs

../../../external/corefx/src/Common/src/CoreLib/System/Collections/Generic/*.cs:NonRandomizedStringEqualityComparer.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/ObjectModel/Collection.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/ObjectModel/ReadOnlyCollection.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/Generic/Dictionary.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/Generic/IDictionaryDebugView.cs
../../../external/corefx/src/Common/src/CoreLib/System/Collections/Generic/KeyValuePair.cs

../../../external/corefx/src/Common/src/CoreLib/System/Diagnostics/StackTraceHiddenAttribute.cs

../../../external/corefx/src/Common/src/CoreLib/System/Globalization/CompareInfo.cs
../../../external/corefx/src/Common/src/CoreLib/System/Globalization/CompareInfo.Invariant.cs
../../../external/corefx/src/Common/src/CoreLib/System/Globalization/GlobalizationExtensions.cs

../../../external/corefx/src/Common/src/CoreLib/System/Numerics/ConstantHelper.cs
../../../external/corefx/src/Common/src/CoreLib/System/Numerics/Register.cs
../../../external/corefx/src/Common/src/CoreLib/System/Numerics/Vector.cs
../../../external/corefx/src/Common/src/CoreLib/System/Numerics/Vector_Operations.cs

../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/AsyncMethodBuilderAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/AsyncValueTaskMethodBuilder.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/ConfiguredValueTaskAwaitable.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/IntrinsicAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/IsReadOnlyAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/IsByRefLikeAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/ITuple.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/RuntimeFeature.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/TupleElementNamesAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/ValueTaskAwaiter.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/AccessedThroughPropertyAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/AsyncStateMachineAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/CallerFilePathAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/CallerLineNumberAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/CallerMemberNameAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/CompilerGeneratedAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/CompilerGlobalScopeAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/CustomConstantAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/DateTimeConstantAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/DecimalConstantAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/DisablePrivateReflectionAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/DiscardableAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/ExtensionAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/FixedAddressValueTypeAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/FixedBufferAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/FormattableStringFactory.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/IAsyncStateMachine.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/IndexerNameAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/INotifyCompletion.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/IsConst.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/IsVolatile.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/IteratorStateMachineAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/ReferenceAssemblyAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/RuntimeCompatibilityAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/RuntimeWrappedException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/SpecialNameAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/StateMachineAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/SuppressIldasmAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/TypeForwardedFromAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/TypeForwardedToAttribute.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/CompilerServices/UnsafeValueTypeAttribute.cs


../../../external/corefx/src/Common/src/CoreLib/System/Runtime/InteropServices/MemoryMarshal.cs
../../../external/corefx/src/Common/src/CoreLib/System/Runtime/InteropServices/MemoryMarshal.Fast.cs

../../../external/corefx/src/Common/src/CoreLib/System/Threading/Tasks/TaskCanceledException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Threading/Tasks/TaskCompletionSource.cs
../../../external/corefx/src/Common/src/CoreLib/System/Threading/Tasks/TaskSchedulerException.cs
../../../external/corefx/src/Common/src/CoreLib/System/Threading/Tasks/ValueTask.cs
../../../external/corefx/src/Common/src/CoreLib/System/Threading/Tasks/Sources/IValueTaskSource.cs

../../../external/corefx/src/Common/src/System/Collections/Concurrent/ConcurrentQueue_Segment.cs

../../../external/corefx/src/Common/src/System/Collections/Generic/LowLevelDictionary.cs
../../../external/corefx/src/Common/src/System/Collections/Generic/ReferenceEqualityComparer.cs

../../../external/corefx/src/Common/src/System/Threading/Tasks/BeginEndAwaitableAdapter.cs
../../../external/corefx/src/Common/src/System/Threading/Tasks/RendezvousAwaitable.cs

../../../external/corefx/src/System.Collections/src/System/Collections/Generic/CollectionExtensions.cs

../../../external/corefx/src/System.Collections.Concurrent/src/System/Collections/Concurrent/CDSCollectionETWBCLProvider.cs
../../../external/corefx/src/System.Collections.Concurrent/src/System/Collections/Concurrent/ConcurrentDictionary.cs
../../../external/corefx/src/System.Collections.Concurrent/src/System/Collections/Concurrent/ConcurrentQueue.cs
../../../external/corefx/src/System.Collections.Concurrent/src/System/Collections/Concurrent/ConcurrentStack.cs
../../../external/corefx/src/System.Collections.Concurrent/src/System/Collections/Concurrent/IProducerConsumerCollection.cs
../../../external/corefx/src/System.Collections.Concurrent/src/System/Collections/Concurrent/OrderablePartitioner.cs
../../../external/corefx/src/System.Collections.Concurrent/src/System/Collections/Concurrent/Partitioner.cs
../../../external/corefx/src/System.Collections.Concurrent/src/System/Collections/Concurrent/PartitionerStatic.cs

../../../external/corefx/src/System.Memory/src/System/Pinnable.cs
../../../external/corefx/src/System.Memory/src/System/SequencePosition.cs
../../../external/corefx/src/System.Memory/src/System/SpanHelpers.cs
../../../external/corefx/src/System.Memory/src/System/ThrowHelper.cs
../../../external/corefx/src/System.Memory/src/System/Buffers/*.cs
../../../external/corefx/src/System.Memory/src/System/Buffers/Binary/*.cs
../../../external/corefx/src/System.Memory/src/System/Runtime/InteropServices/*.cs:MemoryMarshal.Portable.cs

../../../external/corefx/src/Common/src/CoreLib/System/Buffers/Text/FormattingHelpers.CountDigits.cs
../../../external/corefx/src/System.Memory/src/System/Buffers/StandardFormat.cs
../../../external/corefx/src/System.Memory/src/System/Buffers/OperationStatus.cs
../../../external/corefx/src/System.Memory/src/System/Buffers/Text/*.cs
../../../external/corefx/src/System.Memory/src/System/Buffers/Text/Utf8Formatter/*.cs
../../../external/corefx/src/System.Memory/src/System/Buffers/Text/Utf8Parser/*.cs
# This implementation is another "part" of the partial class "Number". Long term, we want to switch our referencesource implementation over to corefx.
# Once that's done, we still need these parts here - but their namespace should be changed back to System, to make them become part of the "Number" class.
../../../external/corefx/src/System.Memory/src/System/Number/*.cs

../../../external/corefx/src/Common/src/System/MutableDecimal.cs

../../../external/corefx/src/System.Runtime.InteropServices.RuntimeInformation/src/System/Runtime/InteropServices/RuntimeInformation/OSPlatform.cs
../../../external/corefx/src/System.Runtime.InteropServices.RuntimeInformation/src/System/Runtime/InteropServices/RuntimeInformation/Architecture.cs

../../../external/corefx/src/System.Security.Cryptography.X509Certificates/src/System/Security/Cryptography/X509Certificates/X509ContentType.cs
../../../external/corefx/src/System.Security.Cryptography.X509Certificates/src/System/Security/Cryptography/X509Certificates/X509KeyStorageFlags.cs

corefx/Mono.SafePasswordHandle.Unix.cs
../../../external/corefx/src/System.Security.Cryptography.X509Certificates/src/Microsoft/Win32/SafeHandles/SafePasswordHandle.cs
../../../external/corefx/src/System.Security.Cryptography.X509Certificates/src/Microsoft/Win32/SafeHandles/SafePasswordHandle.Unix.cs
../../../external/corefx/src/Common/src/Microsoft/Win32/SafeHandles/SafeHandleCache.cs

../../../external/corefx/src/System.Threading.Tasks.Parallel/src/System/Threading/Tasks/*.cs