summaryrefslogtreecommitdiff
path: root/mcs/class/corlib/corlib.dll.sources
blob: 3bab3edb7f8d9495a371fcf13a5b0ae8bb1ef975 (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
Assembly/AssemblyInfo.cs
../../build/common/Consts.cs
../../build/common/Locale.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
Microsoft.Win32.SafeHandles/CriticalHandleZeroOrMinusOneIsInvalid.cs
Microsoft.Win32.SafeHandles/CriticalHandleMinusOneIsInvalid.cs
Microsoft.Win32.SafeHandles/SafeHandleZeroOrMinusOneIsInvalid.cs
Microsoft.Win32.SafeHandles/SafeHandleMinusOneIsInvalid.cs
Microsoft.Win32.SafeHandles/SafeFileHandle.cs
Microsoft.Win32.SafeHandles/SafeRegistryHandle.cs
Microsoft.Win32.SafeHandles/SafeWaitHandle.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/Runtime.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/AccessViolationException.cs
System/ActivationContext.cs
System/Activator.cs
System/AndroidPlatform.cs
System/AppDomain.cs
System/AppDomainInitializer.cs
System/AppDomainManager.cs
System/AppDomainSetup.cs
System/AppDomainUnloadedException.cs
System/ApplicationException.cs
System/ApplicationId.cs
System/ApplicationIdentity.cs
System/ArgIterator.cs
System/ArgumentException.cs
System/ArgumentNullException.cs
System/ArgumentOutOfRangeException.cs
System/ArithmeticException.cs
System/Array.cs
System/ArrayTypeMismatchException.cs
System/AssemblyLoadEventArgs.cs
System/AssemblyLoadEventHandler.cs
System/AsyncCallback.cs
System/Attribute.cs
System/AttributeTargets.cs
System/AttributeUsageAttribute.cs
System/BadImageFormatException.cs
System/Base64FormattingOptions.cs
System/BitConverter.cs
System/Boolean.cs
System/Buffer.cs
System/Byte.cs
System/CannotUnloadAppDomainException.cs
System/Char.cs
System/CharEnumerator.cs
System/CLSCompliantAttribute.cs
System/CStreamReader.cs
System/CStreamWriter.cs
System/Console.cs
System/Console.iOS.cs
System/ConsoleCancelEventArgs.cs
System/ConsoleCancelEventHandler.cs
System/ConsoleColor.cs
System/ConsoleDriver.cs
System/ConsoleKey.cs
System/ConsoleKeyInfo.cs
System/ConsoleModifiers.cs
System/ConsoleSpecialKey.cs
System/ContextBoundObject.cs
System/ContextMarshalException.cs
System/ContextStaticAttribute.cs
System/ControlCharacters.cs
System/Convert.cs
System/CrossAppDomainDelegate.cs
System/DataMisalignedException.cs
System/DateTime.cs
System/DateTimeKind.cs
System/DateTimeOffset.cs
System/DateTimeUtils.cs
System/DayOfWeek.cs
System/DBNull.cs
System/Decimal.cs
System/Delegate.cs
System/DelegateSerializationHolder.cs
System/DivideByZeroException.cs
System/DllNotFoundException.cs
System/DomainManagerInitializationFlags.cs
System/Double.cs
System/DuplicateWaitObjectException.cs
System/EmptyArray.cs
System/EntryPointNotFoundException.cs
System/Enum.cs
System/Environment.cs
System/EnvironmentVariableTarget.cs
System/EventArgs.cs
System/EventHandler.cs
System/Exception.cs
System/ExecutionEngineException.cs
System/FieldAccessException.cs
System/FlagsAttribute.cs
System/FormatException.cs
System/Funcs.cs
System/GC.cs
System/GCCollectionMode.cs
System/GCNotificationStatus.cs
System/Guid.cs
System/IAppDomainSetup.cs
System/IAsyncResult.cs
System/IObservable.cs
System/IObserver.cs
System/ICloneable.cs
System/IComparable.cs
System/IEquatable.cs
System/IConsoleDriver.cs
System/IConvertible.cs
System/ICustomFormatter.cs
System/IDisposable.cs
System/IFormatProvider.cs
System/IFormattable.cs
System/IndexOutOfRangeException.cs
System/InsufficientExecutionStackException.cs
System/InsufficientMemoryException.cs
System/Int16.cs
System/Int32.cs
System/Int64.cs
System/IntPtr.cs
System/InvalidCastException.cs
System/InvalidOperationException.cs
System/InvalidProgramException.cs
System/InvalidTimeZoneException.cs
System/IProgress.cs
System/IServiceProvider.cs
System/KnownTerminals.cs
System/Lazy.cs
System/LoaderOptimization.cs
System/LoaderOptimizationAttribute.cs
System/LocalDataStoreSlot.cs
System/MarshalByRefObject.cs
System/Math.cs
System/MemberAccessException.cs
System/MethodAccessException.cs
System/MidpointRounding.cs
System/MissingFieldException.cs
System/MissingMemberException.cs
System/MissingMethodException.cs
System/MonoAsyncCall.cs
System/MonoCQItem.cs
System/MonoCustomAttrs.cs
System/MonoListItem.cs
System/MonoType.cs
System/MonoTouchAOTHelper.cs
System/MTAThreadAttribute.cs
System/MulticastDelegate.cs
System/MulticastNotSupportedException.cs
System/NonSerializedAttribute.cs
System/NotFiniteNumberException.cs
System/NotImplementedException.cs
System/NotSupportedException.cs
System/NullConsoleDriver.cs
System/Nullable.cs
System/NullReferenceException.cs
System/NumberFormatter.cs
System/Object.cs
System/ObjectDisposedException.cs
System/ObsoleteAttribute.cs
System/OperatingSystem.cs
System/OperationCanceledException.cs
System/OutOfMemoryException.cs
System/OverflowException.cs
System/ParamArrayAttribute.cs
System/PlatformID.cs
System/PlatformNotSupportedException.cs
System/Random.cs
System/RankException.cs
System/ResolveEventArgs.cs
System/ResolveEventHandler.cs
System/RuntimeArgumentHandle.cs
System/RuntimeFieldHandle.cs
System/RuntimeMethodHandle.cs
System/RuntimeTypeHandle.cs
System/ModuleHandle.cs
System/SByte.cs
System/SerializableAttribute.cs
System/Single.cs
System/StackOverflowException.cs
System/STAThreadAttribute.cs
System/String.cs
System/StringSplitOptions.cs
System/StringComparer.cs
System/StringComparison.cs
System/SystemException.cs
System/TermInfoBooleans.cs
System/TermInfoDriver.cs
System/TermInfoNumbers.cs
System/TermInfoReader.cs
System/TermInfoStrings.cs
System/ThreadStaticAttribute.cs
System/TimeSpan.cs
System/TimeZone.cs
../System.Core/System/TimeZoneInfo.cs
../System.Core/System/TimeZoneInfo.AdjustmentRule.cs
../System.Core/System/TimeZoneInfo.Android.cs
../System.Core/System/TimeZoneInfo.MonoTouch.cs
../System.Core/System/TimeZoneInfo.TransitionTime.cs
System/TimeZoneNotFoundException.cs
System/TimeoutException.cs
../../build/common/MonoTODOAttribute.cs
System/Type.cs
System/TypeSpec.cs
System/TypeAccessException.cs
System/TypeCode.cs
System/TypedReference.cs
System/TypeInitializationException.cs
System/TypeLoadException.cs
System/TypeUnloadedException.cs
System/Tuple.cs
System/Tuples.cs
System/UInt16.cs
System/UInt32.cs
System/UInt64.cs
System/UIntPtr.cs
System/UnauthorizedAccessException.cs
System/UnhandledExceptionEventArgs.cs
System/UnhandledExceptionEventHandler.cs
System/UnitySerializationHolder.cs
System/ValueType.cs
System/Variant.cs
System/Version.cs
System/Void.cs
System/WeakReference.cs
System/WeakReference_T.cs
System/WindowsConsoleDriver.cs
System/_AppDomain.cs
System/__ComObject.cs
System.Collections/ArrayList.cs
System.Collections/BitArray.cs
System.Collections/CaseInsensitiveComparer.cs
System.Collections/CaseInsensitiveHashCodeProvider.cs
System.Collections/CollectionBase.cs
System.Collections/Comparer.cs
System.Collections/CollectionDebuggerView.cs
System.Collections/DictionaryBase.cs
System.Collections/DictionaryEntry.cs
System.Collections/Hashtable.cs
System.Collections/HashPrimeNumbers.cs
System.Collections/ICollection.cs
System.Collections/IComparer.cs
System.Collections/IDictionary.cs
System.Collections/IDictionaryEnumerator.cs
System.Collections/IEnumerable.cs
System.Collections/IEnumerator.cs
System.Collections/IEqualityComparer.cs
System.Collections/IHashCodeProvider.cs
System.Collections/IList.cs
System.Collections/IStructuralComparable.cs
System.Collections/IStructuralEquatable.cs
System.Collections/Queue.cs
System.Collections/ReadOnlyCollectionBase.cs
System.Collections/SortedList.cs
System.Collections/Stack.cs
System.Collections/StructuralComparisons.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/ConditionalAttribute.cs
System.Diagnostics/DebuggableAttribute.cs
System.Diagnostics/Debugger.cs
System.Diagnostics/DebuggerBrowsableState.cs
System.Diagnostics/DebuggerBrowsableAttribute.cs
System.Diagnostics/DebuggerDisplayAttribute.cs
System.Diagnostics/DebuggerHiddenAttribute.cs
System.Diagnostics/DebuggerNonUserCodeAttribute.cs
System.Diagnostics/DebuggerStepThroughAttribute.cs
System.Diagnostics/DebuggerStepperBoundaryAttribute.cs
System.Diagnostics/DebuggerTypeProxyAttribute.cs
System.Diagnostics/DebuggerVisualizerAttribute.cs
System.Diagnostics/StackFrame.cs
System.Diagnostics/StackTrace.cs
System.Diagnostics.CodeAnalysis/SuppressMessageAttribute.cs
System.Diagnostics.Contracts/Contract.cs
System.Diagnostics.Contracts/ContractAbbreviatorAttribute.cs
System.Diagnostics.Contracts/ContractArgumentValidatorAttribute.cs
System.Diagnostics.Contracts/ContractClassAttribute.cs
System.Diagnostics.Contracts/ContractClassForAttribute.cs
System.Diagnostics.Contracts/ContractException.cs
System.Diagnostics.Contracts/ContractFailedEventArgs.cs
System.Diagnostics.Contracts/ContractFailureKind.cs
System.Diagnostics.Contracts/ContractInvariantMethodAttribute.cs
System.Diagnostics.Contracts/ContractOptionAttribute.cs
System.Diagnostics.Contracts/ContractPublicPropertyNameAttribute.cs
System.Diagnostics.Contracts/ContractReferenceAssemblyAttribute.cs
System.Diagnostics.Contracts/ContractRuntimeIgnoredAttribute.cs
System.Diagnostics.Contracts/ContractShouldAssertException.cs
System.Diagnostics.Contracts/ContractVerificationAttribute.cs
System.Diagnostics.Contracts/PureAttribute.cs
System.Diagnostics.Contracts.Internal/ContractHelper.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/Calendar.cs
System.Globalization/CalendarAlgorithmType.cs
System.Globalization/CalendarWeekRule.cs
System.Globalization/CalendricalCalculations.cs
System.Globalization/CharUnicodeInfo.cs
System.Globalization/ChineseLunisolarCalendar.cs
System.Globalization/CodePageDataItem.cs
System.Globalization/CompareInfo.cs
System.Globalization/CompareOptions.cs
System.Globalization/CultureInfo.cs
System.Globalization/CultureNotFoundException.cs
System.Globalization/CultureTypes.cs
System.Globalization/DateTimeFormatInfo.cs
System.Globalization/DateTimeStyles.cs
System.Globalization/DaylightTime.cs
System.Globalization/DigitShapes.cs
System.Globalization/EastAsianLunisolarCalendar.cs
System.Globalization/GregorianCalendar.cs
System.Globalization/GregorianCalendarTypes.cs
System.Globalization/HebrewCalendar.cs
System.Globalization/HijriCalendar.cs
System.Globalization/IdnMapping.cs
System.Globalization/JapaneseCalendar.cs
System.Globalization/JapaneseLunisolarCalendar.cs
System.Globalization/JulianCalendar.cs
System.Globalization/KoreanCalendar.cs
System.Globalization/KoreanLunisolarCalendar.cs
System.Globalization/NumberFormatInfo.cs
System.Globalization/NumberStyles.cs
System.Globalization/PersianCalendar.cs
System.Globalization/RegionInfo.cs
System.Globalization/RegionInfo.MonoTouch.cs
System.Globalization/StringInfo.cs
System.Globalization/TaiwanCalendar.cs
System.Globalization/TaiwanLunisolarCalendar.cs
System.Globalization/TextElementEnumerator.cs
System.Globalization/TextInfo.cs
System.Globalization/ThaiBuddhistCalendar.cs
System.Globalization/TimeSpanStyles.cs
System.Globalization/UmAlQuraCalendar.cs
System.Globalization/UnicodeCategory.cs
System.IO/BinaryReader.cs
System.IO/BinaryWriter.cs
System.IO/BufferedStream.cs
System.IO/Directory.cs
System.IO/DirectoryInfo.cs
System.IO/DirectoryNotFoundException.cs
System.IO/DriveInfo.cs
System.IO/DriveNotFoundException.cs
System.IO/DriveType.cs
System.IO/EndOfStreamException.cs
System.IO/File.cs
System.IO/FileAccess.cs
System.IO/FileAttributes.cs
System.IO/FileInfo.cs
System.IO/FileLoadException.cs
System.IO/FileMode.cs
System.IO/FileNotFoundException.cs
System.IO/FileOptions.cs
System.IO/FileShare.cs
System.IO/FileStream.cs
System.IO/FileStreamAsyncResult.cs
System.IO/FileSystemInfo.cs
System.IO/IOException.cs
System.IO/LogcatTextWriter.cs
System.IO/MemoryStream.cs
System.IO/MonoIO.cs
System.IO/MonoIOError.cs
System.IO/MonoFileType.cs
System.IO/MonoIOStat.cs
System.IO/Path.cs
System.IO/PathTooLongException.cs
System.IO/SearchOption.cs
System.IO/SearchPattern.cs
System.IO/SeekOrigin.cs
System.IO/Stream.cs
System.IO/StreamReader.cs
System.IO/StreamWriter.cs
System.IO/StringReader.cs
System.IO/StringWriter.cs
System.IO/TextReader.cs
System.IO/TextWriter.cs
System.IO/UnexceptionalStreamReader.cs
System.IO/UnexceptionalStreamWriter.cs
System.IO/UnmanagedMemoryAccessor.cs
System.IO/UnmanagedMemoryStream.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/AmbiguousMatchException.cs
System.Reflection/Assembly.cs
System.Reflection/AssemblyAlgorithmIdAttribute.cs
System.Reflection/AssemblyCompanyAttribute.cs
System.Reflection/AssemblyConfigurationAttribute.cs
System.Reflection/AssemblyContentType.cs
System.Reflection/AssemblyCopyrightAttribute.cs
System.Reflection/AssemblyCultureAttribute.cs
System.Reflection/AssemblyDefaultAliasAttribute.cs
System.Reflection/AssemblyDelaySignAttribute.cs
System.Reflection/AssemblyDescriptionAttribute.cs
System.Reflection/AssemblyFileVersionAttribute.cs
System.Reflection/AssemblyFlagsAttribute.cs
System.Reflection/AssemblyInformationalVersionAttribute.cs
System.Reflection/AssemblyKeyFileAttribute.cs
System.Reflection/AssemblyKeyNameAttribute.cs
System.Reflection/AssemblyMetadataAttribute.cs
System.Reflection/AssemblyName.cs
System.Reflection/AssemblyNameFlags.cs
System.Reflection/AssemblyNameProxy.cs
System.Reflection/AssemblyProductAttribute.cs
System.Reflection/AssemblySignatureKeyAttribute.cs
System.Reflection/AssemblyTitleAttribute.cs
System.Reflection/AssemblyTradeMarkAttribute.cs
System.Reflection/AssemblyVersionAttribute.cs
System.Reflection/Binder.cs
System.Reflection/BindingFlags.cs
System.Reflection/CallingConventions.cs
System.Reflection/ConstructorInfo.cs
System.Reflection/CustomAttributeData.cs
System.Reflection/CustomAttributeExtensions.cs
System.Reflection/CustomAttributeFormatException.cs
System.Reflection/CustomAttributeNamedArgument.cs
System.Reflection/CustomAttributeTypedArgument.cs
System.Reflection/DefaultMemberAttribute.cs
System.Reflection/EventAttributes.cs
System.Reflection/EventInfo.cs
System.Reflection/ExceptionHandlingClause.cs
System.Reflection/ExceptionHandlingClauseOptions.cs
System.Reflection/FieldAttributes.cs
System.Reflection/FieldInfo.cs
System.Reflection/GenericParameterAttributes.cs
System.Reflection/ICustomAttributeProvider.cs
System.Reflection/ImageFileMachine.cs
System.Reflection/InterfaceMapping.cs
System.Reflection/IntrospectionExtensions.cs
System.Reflection/InvalidFilterCriteriaException.cs
System.Reflection/IReflect.cs
System.Reflection/IReflectableType.cs
System.Reflection/LocalVariableInfo.cs
System.Reflection/ManifestResourceInfo.cs
System.Reflection/MemberFilter.cs
System.Reflection/MemberInfo.cs
System.Reflection/MemberInfoSerializationHolder.cs
System.Reflection/MemberTypes.cs
System.Reflection/MethodAttributes.cs
System.Reflection/MethodBase.cs
System.Reflection/MethodBody.cs
System.Reflection/MethodImplAttributes.cs
System.Reflection/MethodInfo.cs
System.Reflection/Missing.cs
System.Reflection/Module.cs
System.Reflection/ModuleResolveEventHandler.cs
System.Reflection/MonoAssembly.cs
System.Reflection/MonoGenericClass.cs
System.Reflection/MonoGenericMethod.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/ObfuscateAssemblyAttribute.cs
System.Reflection/ObfuscationAttribute.cs
System.Reflection/ParameterAttributes.cs
System.Reflection/ParameterInfo.cs
System.Reflection/ParameterModifier.cs
System.Reflection/Pointer.cs
System.Reflection/PortableExecutableKinds.cs
System.Reflection/ProcessorArchitecture.cs
System.Reflection/PropertyAttributes.cs
System.Reflection/PropertyInfo.cs
System.Reflection/ReflectionContext.cs
System.Reflection/ReflectionTypeLoadException.cs
System.Reflection/ResourceAttributes.cs
System.Reflection/ResourceLocation.cs
System.Reflection/RuntimeReflectionExtensions.cs
System.Reflection/StrongNameKeyPair.cs
System.Reflection/TargetException.cs
System.Reflection/TargetInvocationException.cs
System.Reflection/TargetParameterCountException.cs
System.Reflection/TypeAttributes.cs
System.Reflection/TypeDelegator.cs
System.Reflection/TypeFilter.cs
System.Reflection/TypeInfo.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/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/TypeToken.cs
System.Reflection.Emit/UnmanagedMarshal.cs
System.Resources/IResourceReader.cs
System.Resources/IResourceWriter.cs
System.Resources/MissingManifestResourceException.cs
System.Resources/MissingSatelliteAssemblyException.cs
System.Resources/NeutralResourcesLanguageAttribute.cs
System.Resources/ResourceManager.cs
System.Resources/ResourceReader.cs
System.Resources/ResourceSet.cs
System.Resources/ResourceWriter.cs
System.Resources/RuntimeResourceSet.cs
System.Resources/SatelliteContractVersionAttribute.cs
System.Resources/UltimateResourceFallbackLocation.cs
System.Resources/Win32Resources.cs
System.Runtime/AssemblyTargetedPatchBandAttribute.cs
System.Runtime/GCLatencyMode.cs
System.Runtime/GCSettings.cs
System.Runtime/MemoryFailPoint.cs
System.Runtime/TargetedPatchingOptOutAttribute.cs
System.Runtime.CompilerServices/AccessedThroughPropertyAttribute.cs
System.Runtime.CompilerServices/AsyncStateMachineAttribute.cs
System.Runtime.CompilerServices/AsyncVoidMethodBuilder.cs
System.Runtime.CompilerServices/AsyncTaskMethodBuilder.cs
System.Runtime.CompilerServices/AsyncTaskMethodBuilder_T.cs
System.Runtime.CompilerServices/ReferenceAssemblyAttribute.cs
System.Runtime.CompilerServices/CallConvCdecl.cs
System.Runtime.CompilerServices/CallConvFastcall.cs
System.Runtime.CompilerServices/CallConvThiscall.cs
System.Runtime.CompilerServices/CallConvStdcall.cs
System.Runtime.CompilerServices/CallerFilePathAttribute.cs
System.Runtime.CompilerServices/CallerLineNumberAttribute.cs
System.Runtime.CompilerServices/CallerMemberNameAttribute.cs
System.Runtime.CompilerServices/CompilationRelaxations.cs
System.Runtime.CompilerServices/CompilationRelaxationsAttribute.cs
System.Runtime.CompilerServices/CompilerGeneratedAttribute.cs
System.Runtime.CompilerServices/CompilerGlobalScopeAttribute.cs
System.Runtime.CompilerServices/CompilerMarshalOverride.cs
System.Runtime.CompilerServices/ConditionalWeakTable.cs
System.Runtime.CompilerServices/ConfiguredTaskAwaitable.cs
System.Runtime.CompilerServices/ConfiguredTaskAwaitable_T.cs
System.Runtime.CompilerServices/ContractHelper.cs
System.Runtime.CompilerServices/CustomConstantAttribute.cs
System.Runtime.CompilerServices/DateTimeConstantAttribute.cs
System.Runtime.CompilerServices/DecimalConstantAttribute.cs
System.Runtime.CompilerServices/DefaultDependencyAttribute.cs
System.Runtime.CompilerServices/DependencyAttribute.cs
System.Runtime.CompilerServices/DiscardableAttribute.cs
System.Runtime.CompilerServices/ExtensionAttribute.cs
System.Runtime.CompilerServices/FixedAddressValueTypeAttribute.cs
System.Runtime.CompilerServices/FixedBufferAttribute.cs
System.Runtime.CompilerServices/HasCopySemanticsAttribute.cs
System.Runtime.CompilerServices/IAsyncStateMachine.cs
System.Runtime.CompilerServices/ICriticalNotifyCompletion.cs
System.Runtime.CompilerServices/IDispatchConstantAttribute.cs
System.Runtime.CompilerServices/IUnknownConstantAttribute.cs
System.Runtime.CompilerServices/IndexerNameAttribute.cs
System.Runtime.CompilerServices/INotifyCompletion.cs
System.Runtime.CompilerServices/InternalsVisibleToAttribute.cs
System.Runtime.CompilerServices/IsBoxed.cs
System.Runtime.CompilerServices/IsByValue.cs
System.Runtime.CompilerServices/IsConst.cs
System.Runtime.CompilerServices/IsCopyConstructed.cs
System.Runtime.CompilerServices/IsExplicitlyDereferenced.cs
System.Runtime.CompilerServices/IsImplicitlyDereferenced.cs
System.Runtime.CompilerServices/IsJitIntrinsic.cs
System.Runtime.CompilerServices/IsLong.cs
System.Runtime.CompilerServices/IsPinned.cs
System.Runtime.CompilerServices/IsSignUnspecifiedByte.cs
System.Runtime.CompilerServices/IsUdtReturn.cs
System.Runtime.CompilerServices/IsVolatile.cs
System.Runtime.CompilerServices/IteratorStateMachineAttribute.cs
System.Runtime.CompilerServices/LoadHint.cs
System.Runtime.CompilerServices/MethodCodeType.cs
System.Runtime.CompilerServices/MethodImplAttribute.cs
System.Runtime.CompilerServices/MethodImplOptions.cs
System.Runtime.CompilerServices/NativeCppClassAttribute.cs
System.Runtime.CompilerServices/RequiredAttributeAttribute.cs
System.Runtime.CompilerServices/RuntimeCompatibilityAttribute.cs
System.Runtime.CompilerServices/RuntimeHelpers.cs
System.Runtime.CompilerServices/RuntimeWrappedException.cs
System.Runtime.CompilerServices/SpecialNameAttribute.cs 
System.Runtime.CompilerServices/ScopelessEnumAttribute.cs
System.Runtime.CompilerServices/SuppressIldasmAttribute.cs
System.Runtime.CompilerServices/StateMachineAttribute.cs
System.Runtime.CompilerServices/StringFreezingAttribute.cs 
System.Runtime.CompilerServices/UnsafeValueTypeAttribute.cs
System.Runtime.CompilerServices/TaskAwaiter.cs
System.Runtime.CompilerServices/TaskAwaiter_T.cs
System.Runtime.CompilerServices/TypeForwardedFromAttribute.cs
System.Runtime.CompilerServices/TypeForwardedToAttribute.cs
System.Runtime.CompilerServices/YieldAwaitable.cs
System.Runtime.ConstrainedExecution/CriticialFinalizerObject.cs
System.Runtime.ConstrainedExecution/CER.cs
System.Runtime.ConstrainedExecution/Consistency.cs
System.Runtime.ConstrainedExecution/PrePrepareMethodAttribute.cs
System.Runtime.ConstrainedExecution/ReliabilityContractAttribute.cs
System.Runtime.ExceptionServices/ExceptionDispatchInfo.cs
System.Runtime.ExceptionServices/FirstChanceExceptionEventArgs.cs
System.Runtime.ExceptionServices/HandleProcessCorruptedStateExceptionsAttribute.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/AllowReversePInvokeCallsAttribute.cs
System.Runtime.InteropServices/ArrayWithOffset.cs
System.Runtime.InteropServices/AssemblyRegistrationFlags.cs
System.Runtime.InteropServices/AutomationProxyAttribute.cs
System.Runtime.InteropServices/BestFitMappingAttribute.cs
System.Runtime.InteropServices/BIND_OPTS.cs
System.Runtime.InteropServices/BINDPTR.cs
System.Runtime.InteropServices/BStrWrapper.cs
System.Runtime.InteropServices/CALLCONV.cs
System.Runtime.InteropServices/CallingConvention.cs
System.Runtime.InteropServices/CharSet.cs
System.Runtime.InteropServices/ClassInterfaceAttribute.cs
System.Runtime.InteropServices/ClassInterfaceType.cs
System.Runtime.InteropServices/CoClassAttribute.cs
System.Runtime.InteropServices/ComAliasNameAttribute.cs
System.Runtime.InteropServices/ComCompatibleVersionAttribute.cs
System.Runtime.InteropServices/ComConversionLossAttribute.cs
System.Runtime.InteropServices/ComDefaultInterfaceAttribute.cs
System.Runtime.InteropServices/COMException.cs
System.Runtime.InteropServices/ComEventInterfaceAttribute.cs
System.Runtime.InteropServices/ComImportAttribute.cs
System.Runtime.InteropServices/ComInterfaceType.cs
System.Runtime.InteropServices/ComMemberType.cs
System.Runtime.InteropServices/ComRegisterFunctionAttribute.cs
System.Runtime.InteropServices/ComSourceInterfacesAttribute.cs
System.Runtime.InteropServices/ComUnregisterFunctionAttribute.cs
System.Runtime.InteropServices/ComVisible.cs
System.Runtime.InteropServices/CONNECTDATA.cs
System.Runtime.InteropServices/CriticalHandle.cs
System.Runtime.InteropServices/CurrencyWrapper.cs
System.Runtime.InteropServices/DefaultCharSetAttribute.cs
System.Runtime.InteropServices/DESCKIND.cs
System.Runtime.InteropServices/DispatchWrapper.cs
System.Runtime.InteropServices/DISPPARAMS.cs
System.Runtime.InteropServices/DispIdAttribute.cs
System.Runtime.InteropServices/DllImportAttribute.cs
System.Runtime.InteropServices/ELEMDESC.cs
System.Runtime.InteropServices/ErrorWrapper.cs
System.Runtime.InteropServices/EXCEPINFO.cs
System.Runtime.InteropServices/ExporterEventKind.cs
System.Runtime.InteropServices/ExtensibleClassFactory.cs
System.Runtime.InteropServices/ExternalException.cs
System.Runtime.InteropServices/FieldOffsetAttribute.cs
System.Runtime.InteropServices/FILETIME.cs
System.Runtime.InteropServices/FUNCDESC.cs
System.Runtime.InteropServices/FUNCFLAGS.cs
System.Runtime.InteropServices/FUNCKIND.cs
System.Runtime.InteropServices/GCHandle.cs
System.Runtime.InteropServices/GCHandleType.cs
System.Runtime.InteropServices/GuidAttribute.cs
System.Runtime.InteropServices/HandleRef.cs
System.Runtime.InteropServices/ICustomAdapter.cs
System.Runtime.InteropServices/ICustomFactory.cs
System.Runtime.InteropServices/ICustomMarshaler.cs
System.Runtime.InteropServices/IDispatchImplAttribute.cs
System.Runtime.InteropServices/IDispatchImplType.cs
System.Runtime.InteropServices/IDLDESC.cs
System.Runtime.InteropServices/IDLFLAG.cs
System.Runtime.InteropServices/IMPLTYPEFLAGS.cs
System.Runtime.InteropServices/INVOKEKIND.cs
System.Runtime.InteropServices/IRegistrationServices.cs
System.Runtime.InteropServices/ITypeLibConverter.cs
System.Runtime.InteropServices/ITypeLibExporterNameProvider.cs
System.Runtime.InteropServices/ITypeLibExporterNotifySink.cs
System.Runtime.InteropServices/ITypeLibImporterNotifySink.cs
System.Runtime.InteropServices/ImportedFromTypeLibAttribute.cs
System.Runtime.InteropServices/ImporterEventKind.cs
System.Runtime.InteropServices/InAttribute.cs
System.Runtime.InteropServices/InterfaceTypeAttribute.cs
System.Runtime.InteropServices/InvalidComObjectException.cs
System.Runtime.InteropServices/InvalidOleVariantTypeException.cs
System.Runtime.InteropServices/LCIDConversionAttribute.cs
System.Runtime.InteropServices/LIBFLAGS.cs
System.Runtime.InteropServices/LayoutKind.cs
System.Runtime.InteropServices/Marshal.cs
System.Runtime.InteropServices/MarshalAsAttribute.cs
System.Runtime.InteropServices/MarshalDirectiveException.cs
System.Runtime.InteropServices/ObjectCreationDelegate.cs
System.Runtime.InteropServices/OptionalAttribute.cs
System.Runtime.InteropServices/OutAttribute.cs
System.Runtime.InteropServices/PARAMDESC.cs
System.Runtime.InteropServices/PARAMFLAG.cs
System.Runtime.InteropServices/PreserveSigAttribute.cs
System.Runtime.InteropServices/PrimaryInteropAssemblyAttribute.cs
System.Runtime.InteropServices/RegistrationClassContext.cs
System.Runtime.InteropServices/RegistrationConnectionType.cs
System.Runtime.InteropServices/SEHException.cs
System.Runtime.InteropServices/STATSTG.cs
System.Runtime.InteropServices/ProgIdAttribute.cs
System.Runtime.InteropServices/RegistrationServices.cs
System.Runtime.InteropServices/RuntimeEnvironment.cs
System.Runtime.InteropServices/SafeArrayRankMismatchException.cs
System.Runtime.InteropServices/SafeArrayTypeMismatchException.cs
System.Runtime.InteropServices/SafeBuffer.cs
System.Runtime.InteropServices/SafeHandle.cs
System.Runtime.InteropServices/SetWin32ContextInIDispatchAttribute.cs
System.Runtime.InteropServices/StructLayoutAttribute.cs
System.Runtime.InteropServices/SYSKIND.cs
System.Runtime.InteropServices/TYPEATTR.cs
System.Runtime.InteropServices/TYPEDESC.cs
System.Runtime.InteropServices/TYPEFLAGS.cs
System.Runtime.InteropServices/TYPEKIND.cs
System.Runtime.InteropServices/TYPELIBATTR.cs
System.Runtime.InteropServices/TypeIdentifierAttribute.cs
System.Runtime.InteropServices/TypeLibConverter.cs
System.Runtime.InteropServices/TypeLibExporterFlags.cs
System.Runtime.InteropServices/TypeLibFuncAttribute.cs
System.Runtime.InteropServices/TypeLibFuncFlags.cs
System.Runtime.InteropServices/TypeLibImportClassAttribute.cs
System.Runtime.InteropServices/TypeLibImporterFlags.cs
System.Runtime.InteropServices/TypeLibTypeAttribute.cs
System.Runtime.InteropServices/TypeLibTypeFlags.cs
System.Runtime.InteropServices/TypeLibVarAttribute.cs
System.Runtime.InteropServices/TypeLibVarFlags.cs
System.Runtime.InteropServices/TypeLibVersionAttribute.cs
System.Runtime.InteropServices/UCOMIBindCtx.cs
System.Runtime.InteropServices/UCOMIConnectionPoint.cs
System.Runtime.InteropServices/UCOMIConnectionPointContainer.cs
System.Runtime.InteropServices/UCOMIEnumConnectionPoints.cs
System.Runtime.InteropServices/UCOMIEnumConnections.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/UCOMITypeInfo.cs
System.Runtime.InteropServices/UCOMITypeLib.cs
System.Runtime.InteropServices/UnknownWrapper.cs
System.Runtime.InteropServices/UnmanagedFunctionPointerAttribute.cs
System.Runtime.InteropServices/UnmanagedType.cs
System.Runtime.InteropServices/VARDESC.cs
System.Runtime.InteropServices/VarEnum.cs
System.Runtime.InteropServices/VARFLAGS.cs
System.Runtime.InteropServices/VariantWrapper.cs
System.Runtime.InteropServices.ComTypes/BINDPTR.cs
System.Runtime.InteropServices.ComTypes/BIND_OPTS.cs
System.Runtime.InteropServices.ComTypes/CALLCONV.cs
System.Runtime.InteropServices.ComTypes/CONNECTDATA.cs
System.Runtime.InteropServices.ComTypes/DESCKIND.cs
System.Runtime.InteropServices.ComTypes/DISPPARAMS.cs
System.Runtime.InteropServices.ComTypes/ELEMDESC.cs
System.Runtime.InteropServices.ComTypes/EXCEPINFO.cs
System.Runtime.InteropServices.ComTypes/FILETIME.cs
System.Runtime.InteropServices.ComTypes/FUNCDESC.cs
System.Runtime.InteropServices.ComTypes/FUNCFLAGS.cs
System.Runtime.InteropServices.ComTypes/FUNCKIND.cs
System.Runtime.InteropServices.ComTypes/IBindCtx.cs
System.Runtime.InteropServices.ComTypes/IConnectionPoint.cs
System.Runtime.InteropServices.ComTypes/IConnectionPointContainer.cs
System.Runtime.InteropServices.ComTypes/IDLDESC.cs
System.Runtime.InteropServices.ComTypes/IDLFLAG.cs
System.Runtime.InteropServices.ComTypes/IEnumConnectionPoints.cs
System.Runtime.InteropServices.ComTypes/IEnumConnections.cs
System.Runtime.InteropServices.ComTypes/IEnumMoniker.cs
System.Runtime.InteropServices.ComTypes/IEnumString.cs
System.Runtime.InteropServices.ComTypes/IEnumVARIANT.cs
System.Runtime.InteropServices.ComTypes/IMoniker.cs
System.Runtime.InteropServices.ComTypes/IMPLTYPEFLAGS.cs
System.Runtime.InteropServices.ComTypes/INVOKEKIND.cs
System.Runtime.InteropServices.ComTypes/IPersistFile.cs
System.Runtime.InteropServices.ComTypes/IRunningObjectTable.cs
System.Runtime.InteropServices.ComTypes/IStream.cs
System.Runtime.InteropServices.ComTypes/ITypeComp.cs
System.Runtime.InteropServices.ComTypes/ITypeInfo.cs
System.Runtime.InteropServices.ComTypes/ITypeInfo2.cs
System.Runtime.InteropServices.ComTypes/ITypeLib.cs
System.Runtime.InteropServices.ComTypes/ITypeLib2.cs
System.Runtime.InteropServices.ComTypes/LIBFLAGS.cs
System.Runtime.InteropServices.ComTypes/PARAMDESC.cs
System.Runtime.InteropServices.ComTypes/PARAMFLAG.cs
System.Runtime.InteropServices.ComTypes/STATSTG.cs
System.Runtime.InteropServices.ComTypes/SYSKIND.cs
System.Runtime.InteropServices.ComTypes/TYPEATTR.cs
System.Runtime.InteropServices.ComTypes/TYPEDESC.cs
System.Runtime.InteropServices.ComTypes/TYPEFLAGS.cs
System.Runtime.InteropServices.ComTypes/TYPEKIND.cs
System.Runtime.InteropServices.ComTypes/TYPELIBATTR.cs
System.Runtime.InteropServices.ComTypes/VARDESC.cs
System.Runtime.InteropServices.ComTypes/VARFLAGS.cs
System.Runtime.InteropServices.ComTypes/VARKIND.cs
System.Runtime.InteropServices.Expando/IExpando.cs
System.Runtime.InteropServices.WindowsRuntime/DefaultInterfaceAttribute.cs
System.Runtime.InteropServices.WindowsRuntime/DesignerNamespaceResolveEventArgs.cs
System.Runtime.InteropServices.WindowsRuntime/EventRegistrationToken.cs
System.Runtime.InteropServices.WindowsRuntime/EventRegistrationTokenTable.cs
System.Runtime.InteropServices.WindowsRuntime/IActivationFactory.cs
System.Runtime.InteropServices.WindowsRuntime/InterfaceImplementedInVersionAttribute.cs
System.Runtime.InteropServices.WindowsRuntime/NamespaceResolveEventArgs.cs
System.Runtime.InteropServices.WindowsRuntime/ReadOnlyArrayAttribute.cs
System.Runtime.InteropServices.WindowsRuntime/ReturnValueNameAttribute.cs
System.Runtime.InteropServices.WindowsRuntime/WindowsRuntimeMarshal.cs
System.Runtime.InteropServices.WindowsRuntime/WindowsRuntimeMetadata.cs
System.Runtime.InteropServices.WindowsRuntime/WriteOnlyArrayAttribute.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/CallContext.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/LogicalCallContext.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.Serialization/Formatter.cs
System.Runtime.Serialization/FormatterConverter.cs
System.Runtime.Serialization/FormatterServices.cs
System.Runtime.Serialization/IDeserializationCallback.cs
System.Runtime.Serialization/IFormatter.cs
System.Runtime.Serialization/IFormatterConverter.cs
System.Runtime.Serialization/IObjectReference.cs
System.Runtime.Serialization/ISafeSerializationData.cs
System.Runtime.Serialization/ISerializable.cs
System.Runtime.Serialization/ISerializationSurrogate.cs
System.Runtime.Serialization/ISurrogateSelector.cs
System.Runtime.Serialization/ObjectIDGenerator.cs
System.Runtime.Serialization/ObjectManager.cs
System.Runtime.Serialization/OnDeserializedAttribute.cs
System.Runtime.Serialization/OnDeserializingAttribute.cs
System.Runtime.Serialization/OnSerializedAttribute.cs
System.Runtime.Serialization/OnSerializingAttribute.cs
System.Runtime.Serialization/OptionalFieldAttribute.cs
System.Runtime.Serialization/SafeSerializationEventArgs.cs
System.Runtime.Serialization/SerializationBinder.cs
System.Runtime.Serialization/SerializationCallbacks.cs
System.Runtime.Serialization/SerializationEntry.cs
System.Runtime.Serialization/SerializationException.cs
System.Runtime.Serialization/SerializationInfo.cs
System.Runtime.Serialization/SerializationInfoEnumerator.cs
System.Runtime.Serialization/SerializationObjectManager.cs
System.Runtime.Serialization/StreamingContext.cs
System.Runtime.Serialization/StreamingContextStates.cs
System.Runtime.Serialization/SurrogateSelector.cs
System.Runtime.Serialization.Formatters/FormatterAssemblyStyle.cs
System.Runtime.Serialization.Formatters/FormatterTopObjectStyle.cs
System.Runtime.Serialization.Formatters/FormatterTypeStyle.cs
System.Runtime.Serialization.Formatters/IFieldInfo.cs
System.Runtime.Serialization.Formatters/InternalArrayTypeE.cs
System.Runtime.Serialization.Formatters/InternalElementTypeE.cs
System.Runtime.Serialization.Formatters/InternalMemberTypeE.cs
System.Runtime.Serialization.Formatters/InternalMemberValueE.cs
System.Runtime.Serialization.Formatters/InternalNameSpaceE.cs
System.Runtime.Serialization.Formatters/InternalObjectPositionE.cs
System.Runtime.Serialization.Formatters/InternalObjectTypeE.cs
System.Runtime.Serialization.Formatters/InternalParseStateE.cs
System.Runtime.Serialization.Formatters/InternalParseTypeE.cs
System.Runtime.Serialization.Formatters/InternalPrimitiveTypeE.cs
System.Runtime.Serialization.Formatters/InternalRM.cs
System.Runtime.Serialization.Formatters/InternalSerializerTypeE.cs
System.Runtime.Serialization.Formatters/InternalST.cs
System.Runtime.Serialization.Formatters/ISoapMessage.cs
System.Runtime.Serialization.Formatters/ServerFault.cs
System.Runtime.Serialization.Formatters/SoapFault.cs
System.Runtime.Serialization.Formatters/SoapMessage.cs
System.Runtime.Serialization.Formatters/TypeFilterLevel.cs
System.Runtime.Serialization.Formatters.Binary/BinaryFormatter.cs
System.Runtime.Serialization.Formatters.Binary/BinaryCommon.cs
System.Runtime.Serialization.Formatters.Binary/CodeGenerator.cs
System.Runtime.Serialization.Formatters.Binary/ObjectReader.cs
System.Runtime.Serialization.Formatters.Binary/ObjectWriter.cs
System.Runtime.Serialization.Formatters.Binary/MessageFormatter.cs
System.Runtime.Versioning/ComponentGuaranteesAttribute.cs
System.Runtime.Versioning/ComponentGuaranteesOptions.cs
System.Runtime.Versioning/ResourceConsumptionAttribute.cs
System.Runtime.Versioning/ResourceExposureAttribute.cs
System.Runtime.Versioning/ResourceScope.cs
System.Runtime.Versioning/TargetFrameworkAttribute.cs
System.Runtime.Versioning/VersioningHelper.cs
System.Security/AllowPartiallyTrustedCallersAttribute.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/SecurityContext.cs
System.Security/SecurityContextSource.cs
System.Security/SecurityCriticalAttribute.cs
System.Security/SecurityCriticalScope.cs
System.Security/SecurityElement.cs
System.Security/SecurityFrame.cs
System.Security/SecurityException.cs
System.Security/SecurityManager.cs
System.Security/SecurityManager_mobile.cs
System.Security/SecurityRuleSet.cs
System.Security/SecurityRulesAttribute.cs
System.Security/SecuritySafeCriticalAttribute.cs
System.Security/SecurityState.cs
System.Security/SecurityTransparentAttribute.cs
System.Security/SecurityTreatAsSafeAttribute.cs
System.Security/SecurityZone.cs
System.Security/SuppressUnmanagedCodeSecurityAttribute.cs
System.Security/UnverifiableCodeAttribute.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.Core/System.Security.Cryptography/Aes.cs
System.Security.Cryptography/AsymmetricAlgorithm.cs
System.Security.Cryptography/AsymmetricKeyExchangeDeformatter.cs
System.Security.Cryptography/AsymmetricKeyExchangeFormatter.cs
System.Security.Cryptography/AsymmetricSignatureDeformatter.cs
System.Security.Cryptography/AsymmetricSignatureFormatter.cs
System.Security.Cryptography/Base64Constants.cs
System.Security.Cryptography/CipherMode.cs
System.Security.Cryptography/CryptoAPITransform.cs
System.Security.Cryptography/CryptoConfig.cs
System.Security.Cryptography/CryptoConfig_2_1.cs
System.Security.Cryptography/CryptoConfig.fullaot.cs
System.Security.Cryptography/CryptographicException.cs
System.Security.Cryptography/CryptographicUnexpectedOperationExcpetion.cs
System.Security.Cryptography/CryptoStream.cs
System.Security.Cryptography/CryptoStreamMode.cs
System.Security.Cryptography/CspKeyContainerInfo.cs
System.Security.Cryptography/CspParameters.cs
System.Security.Cryptography/CspProviderFlags.cs
System.Security.Cryptography/DeriveBytes.cs
System.Security.Cryptography/DES.cs
System.Security.Cryptography/DESCryptoServiceProvider.cs
System.Security.Cryptography/DSA.cs
System.Security.Cryptography/DSACryptoServiceProvider.cs
System.Security.Cryptography/DSAParameters.cs
System.Security.Cryptography/DSASignatureDeformatter.cs
System.Security.Cryptography/DSASignatureFormatter.cs
System.Security.Cryptography/FromBase64Transform.cs
System.Security.Cryptography/HashAlgorithm.cs
System.Security.Cryptography/HMAC.cs
System.Security.Cryptography/HMACMD5.cs
System.Security.Cryptography/HMACRIPEMD160.cs
System.Security.Cryptography/HMACSHA1.cs
System.Security.Cryptography/HMACSHA256.cs
System.Security.Cryptography/HMACSHA384.cs
System.Security.Cryptography/HMACSHA512.cs
System.Security.Cryptography/ICryptoTransform.cs
System.Security.Cryptography/ICspAsymmetricAlgorithm.cs
System.Security.Cryptography/KeyedHashAlgorithm.cs
System.Security.Cryptography/KeyNumber.cs
System.Security.Cryptography/KeySizes.cs
System.Security.Cryptography/MACTripleDES.cs
System.Security.Cryptography/MaskGenerationMethod.cs
System.Security.Cryptography/MD5.cs
System.Security.Cryptography/MD5CryptoServiceProvider.cs
System.Security.Cryptography/PaddingMode.cs
System.Security.Cryptography/PasswordDeriveBytes.cs
System.Security.Cryptography/PKCS1MaskGenerationMethod.cs
System.Security.Cryptography/RandomNumberGenerator.cs
System.Security.Cryptography/RC2.cs
System.Security.Cryptography/RC2CryptoServiceProvider.cs
System.Security.Cryptography/Rfc2898DeriveBytes.cs
System.Security.Cryptography/Rijndael.cs
System.Security.Cryptography/RijndaelManaged.cs
System.Security.Cryptography/RijndaelManagedTransform.cs
System.Security.Cryptography/RIPEMD160.cs
System.Security.Cryptography/RIPEMD160Managed.cs
System.Security.Cryptography/RNGCryptoServiceProvider.cs
System.Security.Cryptography/RSA.cs
System.Security.Cryptography/RSACryptoServiceProvider.cs
System.Security.Cryptography/RSAOAEPKeyExchangeDeformatter.cs
System.Security.Cryptography/RSAOAEPKeyExchangeFormatter.cs
System.Security.Cryptography/RSAParameters.cs
System.Security.Cryptography/RSAPKCS1KeyExchangeDeformatter.cs
System.Security.Cryptography/RSAPKCS1KeyExchangeFormatter.cs
System.Security.Cryptography/RSAPKCS1SignatureDeformatter.cs
System.Security.Cryptography/RSAPKCS1SignatureFormatter.cs
System.Security.Cryptography/SHA1.cs
System.Security.Cryptography/SHA1CryptoServiceProvider.cs
System.Security.Cryptography/SHA1Managed.cs
System.Security.Cryptography/SHA256.cs
System.Security.Cryptography/SHA256Managed.cs
System.Security.Cryptography/SHA384.cs
System.Security.Cryptography/SHA384Managed.cs
System.Security.Cryptography/SHA512.cs
System.Security.Cryptography/SHA512Managed.cs
System.Security.Cryptography/SHAConstants.cs
System.Security.Cryptography/SignatureDescription.cs
System.Security.Cryptography/SymmetricAlgorithm.cs
System.Security.Cryptography/ToBase64Transform.cs
System.Security.Cryptography/TripleDES.cs
System.Security.Cryptography/TripleDESCryptoServiceProvider.cs
System.Security.Cryptography.X509Certificates/X509Certificate.cs
System.Security.Cryptography.X509Certificates/X509Certificate20.cs
System.Security.Cryptography.X509Certificates/X509ContentType.cs
System.Security.Cryptography.X509Certificates/X509KeyStorageFlags.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/GenericIdentity.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/ASCIIEncoding.cs
System.Text/CodePageEncoding.cs
System.Text/Decoder.cs
System.Text/DecoderExceptionFallback.cs
System.Text/DecoderExceptionFallbackBuffer.cs
System.Text/DecoderFallback.cs
System.Text/DecoderFallbackBuffer.cs
System.Text/DecoderFallbackException.cs
System.Text/DecoderReplacementFallback.cs
System.Text/DecoderReplacementFallbackBuffer.cs
System.Text/Encoder.cs
System.Text/EncoderExceptionFallback.cs
System.Text/EncoderExceptionFallbackBuffer.cs
System.Text/EncoderFallback.cs
System.Text/EncoderFallbackBuffer.cs
System.Text/EncoderFallbackException.cs
System.Text/EncoderReplacementFallback.cs
System.Text/EncoderReplacementFallbackBuffer.cs
System.Text/Encoding.cs
System.Text/EncodingInfo.cs
System.Text/Latin1Encoding.cs
System.Text/MLangCodePageEncoding.cs
System.Text/NormalizationForm.cs
System.Text/StringBuilder.cs
System.Text/SurrogateEncoder.cs
System.Text/UnicodeEncoding.cs
System.Text/UTF7Encoding.cs
System.Text/UTF8Encoding.cs
System.Text/UTF32Encoding.cs
System.Threading/AbandonedMutexException.cs
System.Threading/ApartmentState.cs
System.Threading/AsyncFlowControl.cs
System.Threading/AutoResetEvent.cs
System.Threading/CompressedStack.cs
System.Threading/ContextCallback.cs
System.Threading/EventResetMode.cs
System.Threading/EventWaitHandle.cs
System.Threading/ExecutionContext.cs
System.Threading/HostExecutionContext.cs
System.Threading/HostExecutionContextManager.cs
System.Threading/Interlocked.cs
System.Threading/IOCompletionCallback.cs
System.Threading/LazyThreadSafetyMode.cs
System.Threading/LockCookie.cs
System.Threading/LockQueue.cs
System.Threading/LockRecursionException.cs
System.Threading/ManualResetEvent.cs
System.Threading/Monitor.cs
System.Threading/Mutex.cs
System.Threading/NamedDataSlot.cs
System.Threading/NativeEventCalls.cs
System.Threading/NativeOverlapped.cs
System.Threading/Overlapped.cs
System.Threading/ParameterizedThreadStart.cs
System.Threading/ReaderWriterLock.cs
System.Threading/RegisteredWaitHandle.cs
System.Threading/SendOrPostCallback.cs
../System/System.Threading/SemaphoreFullException.cs
System.Threading/SynchronizationContext.cs
System.Threading/SynchronizationLockException.cs
System.Threading/Thread.cs
System.Threading/ThreadAbortException.cs
System.Threading/ThreadInterruptedException.cs
System.Threading/ThreadPool.cs
System.Threading/ThreadPriority.cs
System.Threading/ThreadStart.cs
System.Threading/ThreadStartException.cs
System.Threading/ThreadState.cs
System.Threading/ThreadStateException.cs
System.Threading/Timeout.cs
System.Threading/Timer.cs
System.Threading/TimerCallback.cs
System.Threading/Volatile.cs
System.Threading/WaitCallback.cs
System.Threading/WaitHandle.cs
System.Threading/WaitHandleCannotBeOpenedException.cs
System.Threading/WaitOrTimerCallback.cs
System.Collections.Generic/CollectionDebuggerView.cs
System.Collections.Generic/Dictionary.cs
System.Collections.Generic/ICollection.cs
System.Collections.Generic/IEnumerable.cs
System.Collections.Generic/IEnumerator.cs
System.Collections.Generic/IList.cs
System.Collections.Generic/IComparer.cs
System.Collections.Generic/IEqualityComparer.cs
System.Collections.Generic/IDictionary.cs
System.Collections.Generic/IReadOnlyCollection.cs
System.Collections.Generic/IReadOnlyList.cs
System.Collections.Generic/IReadOnlyDictionary.cs
System.Collections.Generic/KeyValuePair.cs
System.Collections.Generic/EqualityComparer.cs
System.Collections.Generic/KeyNotFoundException.cs
System.Collections.Generic/List.cs
System.Collections.ObjectModel/Collection.cs
System.Collections.ObjectModel/KeyedCollection.cs
System.Collections.ObjectModel/ReadOnlyCollection.cs
System.Collections.ObjectModel/ReadOnlyDictionary.cs
System/Action.cs
System/ArraySegment.cs
System/Comparison.cs
System/Converter.cs
System/Predicate.cs
System/Progress.cs
System.Collections.Generic/Comparer.cs

System.Threading.Tasks/ConcurrentExclusiveSchedulerPair.cs
System.Threading.Tasks/DecoupledTask.cs
System.Threading.Tasks/TaskFactory.cs
System.Threading.Tasks/TaskFactory_T.cs
System.Threading.Tasks/TaskStatus.cs
System.Threading.Tasks/TaskCreationOptions.cs
System.Threading.Tasks/CyclicDeque.cs
System.Threading.Tasks/IConcurrentDeque.cs
System.Threading.Tasks/PopResult.cs
System.Threading.Tasks/TaskScheduler.cs
System.Threading.Tasks/TaskContinuationOptions.cs
System.Threading.Tasks/TaskCanceledException.cs
System.Threading.Tasks/Task_T.cs
System.Threading.Tasks/Task.cs
System.Threading.Tasks/TaskCompletionQueue.cs
System.Threading.Tasks/TaskExceptionSlot.cs
System.Threading.Tasks/TaskActionInvoker.cs
System.Threading.Tasks/TaskDebuggerView.cs
System.Threading.Tasks/TaskCompletionSource.cs
System.Threading.Tasks/TaskContinuation.cs
System.Threading.Tasks/TaskSchedulerException.cs
System.Threading.Tasks/TaskConstants.cs
System.Threading.Tasks/TaskConstants_T.cs
System.Collections.Concurrent/OrderablePartitioner.cs
System.Collections.Concurrent/ConcurrentDictionary.cs
System.Collections.Concurrent/Partitioner.cs
System.Collections.Concurrent/ConcurrentQueue.cs
System.Collections.Concurrent/EnumerablePartitionerOptions.cs
System.Collections.Concurrent.Partitioners/ListPartitioner.cs
System.Collections.Concurrent.Partitioners/EnumerablePartitioner.cs
System.Collections.Concurrent.Partitioners/UserRangePartitioner.cs
System.Collections.Concurrent/IProducerConsumerCollection.cs
System.Collections.Concurrent/ConcurrentStack.cs
System.Collections.Concurrent/SplitOrderedList.cs
System.Collections.Concurrent/ConcurrentOrderedList.cs
System.Threading/LazyInitializer.cs
System.Threading/CountdownEvent.cs
System.Threading/CancellationTokenSource.cs
System.Threading/CancellationToken.cs
System.Threading/SpinWait.cs
System.Threading/SemaphoreSlim.cs
System.Threading/CancellationTokenRegistration.cs
System.Threading/SpinLock.cs
System.Threading/AtomicBoolean.cs
System.Threading/ManualResetEventSlim.cs
System.Threading/ThreadLocal.cs
System.Threading/Watch.cs
System.Threading.Tasks/ParallelOptions.cs
System.Threading.Tasks/Parallel.cs
System.Threading.Tasks/ParallelLoopResult.cs
System.Threading.Tasks/ParallelLoopState.cs
System/AggregateException.cs
System.Threading.Tasks/SimpleConcurrentBag.cs
System.Threading.Tasks/SynchronizationContextScheduler.cs
System.Threading.Tasks/UnobservedTaskExceptionEventArgs.cs
System.Threading.Tasks/TpScheduler.cs
System.Threading.Tasks/TaskExtensionsImpl.cs