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

Mono.Cecil.cs « net_4_x « profiles - github.com/mono/api-snapshot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d65de02df2ecf34d5528debc47da5e04ca08c3c (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
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

[assembly:System.Reflection.AssemblyVersionAttribute("0.11.0.0")]
[assembly:System.Diagnostics.DebuggableAttribute(System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly:System.Reflection.AssemblyCopyrightAttribute("Copyright © 2008 - 2018 Jb Evain")]
[assembly:System.Reflection.AssemblyFileVersionAttribute("0.11.0.0")]
[assembly:System.Reflection.AssemblyInformationalVersionAttribute("0.11.0.0")]
[assembly:System.Reflection.AssemblyProductAttribute("Mono.Cecil")]
[assembly:System.Reflection.AssemblyTitleAttribute("Mono.Cecil")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("Mono.Cecil.Mdb, PublicKey=002400000480000094000000060200000024000052534131000400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c3fbe2ff9c979ce998475e506e8ce82dd5b0f350dc10e93bf2eeecf874b24770c5081dbea7447fddafa277b22de47d6ffea449674a4f9fccf84d15069089380284dbdd35f46cdff12a1bd78e4ef0065d016df")]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("Mono.Cecil.Pdb, PublicKey=002400000480000094000000060200000024000052534131000400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c3fbe2ff9c979ce998475e506e8ce82dd5b0f350dc10e93bf2eeecf874b24770c5081dbea7447fddafa277b22de47d6ffea449674a4f9fccf84d15069089380284dbdd35f46cdff12a1bd78e4ef0065d016df")]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("Mono.Cecil.Rocks, PublicKey=002400000480000094000000060200000024000052534131000400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c3fbe2ff9c979ce998475e506e8ce82dd5b0f350dc10e93bf2eeecf874b24770c5081dbea7447fddafa277b22de47d6ffea449674a4f9fccf84d15069089380284dbdd35f46cdff12a1bd78e4ef0065d016df")]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("Mono.Cecil.Tests, PublicKey=002400000480000094000000060200000024000052534131000400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c3fbe2ff9c979ce998475e506e8ce82dd5b0f350dc10e93bf2eeecf874b24770c5081dbea7447fddafa277b22de47d6ffea449674a4f9fccf84d15069089380284dbdd35f46cdff12a1bd78e4ef0065d016df")]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
[assembly:System.Runtime.InteropServices.GuidAttribute("fd225bb4-fa53-44b2-a6db-85f5e48dcb54")]
[assembly:System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.RequestMinimum, SkipVerification=true)]
namespace Mono.Cecil
{
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct ArrayDimension
    {
        private int _dummyPrimitive;
        public ArrayDimension(System.Nullable<int> lowerBound, System.Nullable<int> upperBound) { throw null; }
        public bool IsSized { get { throw null; } }
        public System.Nullable<int> LowerBound { get { throw null; } set { } }
        public System.Nullable<int> UpperBound { get { throw null; } set { } }
        public override string ToString() { throw null; }
    }
    public sealed partial class ArrayMarshalInfo : Mono.Cecil.MarshalInfo
    {
        public ArrayMarshalInfo() : base (default(Mono.Cecil.NativeType)) { }
        public Mono.Cecil.NativeType ElementType { get { throw null; } set { } }
        public int Size { get { throw null; } set { } }
        public int SizeParameterIndex { get { throw null; } set { } }
        public int SizeParameterMultiplier { get { throw null; } set { } }
    }
    public sealed partial class ArrayType : Mono.Cecil.TypeSpecification
    {
        public ArrayType(Mono.Cecil.TypeReference type) { }
        public ArrayType(Mono.Cecil.TypeReference type, int rank) { }
        public Mono.Collections.Generic.Collection<Mono.Cecil.ArrayDimension> Dimensions { get { throw null; } }
        public override string FullName { get { throw null; } }
        public override bool IsArray { get { throw null; } }
        public override bool IsValueType { get { throw null; } set { } }
        public bool IsVector { get { throw null; } }
        public override string Name { get { throw null; } }
        public int Rank { get { throw null; } }
    }
    [System.FlagsAttribute]
    public enum AssemblyAttributes : uint
    {
        DisableJITCompileOptimizer = (uint)16384,
        EnableJITCompileTracking = (uint)32768,
        PublicKey = (uint)1,
        Retargetable = (uint)256,
        SideBySideCompatible = (uint)0,
        WindowsRuntime = (uint)512,
    }
    public sealed partial class AssemblyDefinition : Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMetadataTokenProvider, Mono.Cecil.ISecurityDeclarationProvider, System.IDisposable
    {
        internal AssemblyDefinition() { }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get { throw null; } }
        public Mono.Cecil.MethodDefinition EntryPoint { get { throw null; } set { } }
        public string FullName { get { throw null; } }
        public bool HasCustomAttributes { get { throw null; } }
        public bool HasSecurityDeclarations { get { throw null; } }
        public Mono.Cecil.ModuleDefinition MainModule { get { throw null; } }
        public Mono.Cecil.MetadataToken MetadataToken { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.ModuleDefinition> Modules { get { throw null; } }
        public Mono.Cecil.AssemblyNameDefinition Name { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.SecurityDeclaration> SecurityDeclarations { get { throw null; } }
        public static Mono.Cecil.AssemblyDefinition CreateAssembly(Mono.Cecil.AssemblyNameDefinition assemblyName, string moduleName, Mono.Cecil.ModuleKind kind) { throw null; }
        public static Mono.Cecil.AssemblyDefinition CreateAssembly(Mono.Cecil.AssemblyNameDefinition assemblyName, string moduleName, Mono.Cecil.ModuleParameters parameters) { throw null; }
        public void Dispose() { }
        public static Mono.Cecil.AssemblyDefinition ReadAssembly(System.IO.Stream stream) { throw null; }
        public static Mono.Cecil.AssemblyDefinition ReadAssembly(System.IO.Stream stream, Mono.Cecil.ReaderParameters parameters) { throw null; }
        public static Mono.Cecil.AssemblyDefinition ReadAssembly(string fileName) { throw null; }
        public static Mono.Cecil.AssemblyDefinition ReadAssembly(string fileName, Mono.Cecil.ReaderParameters parameters) { throw null; }
        public override string ToString() { throw null; }
        public void Write() { }
        public void Write(Mono.Cecil.WriterParameters parameters) { }
        public void Write(System.IO.Stream stream) { }
        public void Write(System.IO.Stream stream, Mono.Cecil.WriterParameters parameters) { }
        public void Write(string fileName) { }
        public void Write(string fileName, Mono.Cecil.WriterParameters parameters) { }
    }
    public enum AssemblyHashAlgorithm : uint
    {
        None = (uint)0,
        Reserved = (uint)32771,
        SHA1 = (uint)32772,
    }
    public sealed partial class AssemblyLinkedResource : Mono.Cecil.Resource
    {
        public AssemblyLinkedResource(string name, Mono.Cecil.ManifestResourceAttributes flags) { }
        public AssemblyLinkedResource(string name, Mono.Cecil.ManifestResourceAttributes flags, Mono.Cecil.AssemblyNameReference reference) { }
        public Mono.Cecil.AssemblyNameReference Assembly { get { throw null; } set { } }
        public override Mono.Cecil.ResourceType ResourceType { get { throw null; } }
    }
    public sealed partial class AssemblyNameDefinition : Mono.Cecil.AssemblyNameReference
    {
        public AssemblyNameDefinition(string name, System.Version version) : base (default(string), default(System.Version)) { }
        public override byte[] Hash { get { throw null; } }
    }
    public partial class AssemblyNameReference : Mono.Cecil.IMetadataScope, Mono.Cecil.IMetadataTokenProvider
    {
        public AssemblyNameReference(string name, System.Version version) { }
        public Mono.Cecil.AssemblyAttributes Attributes { get { throw null; } set { } }
        public string Culture { get { throw null; } set { } }
        public string FullName { get { throw null; } }
        public virtual byte[] Hash { get { throw null; } set { } }
        public Mono.Cecil.AssemblyHashAlgorithm HashAlgorithm { get { throw null; } set { } }
        public bool HasPublicKey { get { throw null; } set { } }
        public bool IsRetargetable { get { throw null; } set { } }
        public bool IsSideBySideCompatible { get { throw null; } set { } }
        public bool IsWindowsRuntime { get { throw null; } set { } }
        public virtual Mono.Cecil.MetadataScopeType MetadataScopeType { get { throw null; } }
        public Mono.Cecil.MetadataToken MetadataToken { get { throw null; } set { } }
        public string Name { get { throw null; } set { } }
        public byte[] PublicKey { get { throw null; } set { } }
        public byte[] PublicKeyToken { get { throw null; } set { } }
        public System.Version Version { get { throw null; } set { } }
        public static Mono.Cecil.AssemblyNameReference Parse(string fullName) { throw null; }
        public override string ToString() { throw null; }
    }
    [System.SerializableAttribute]
    public sealed partial class AssemblyResolutionException : System.IO.FileNotFoundException
    {
        public AssemblyResolutionException(Mono.Cecil.AssemblyNameReference reference) { }
        public AssemblyResolutionException(Mono.Cecil.AssemblyNameReference reference, System.Exception innerException) { }
        public Mono.Cecil.AssemblyNameReference AssemblyReference { get { throw null; } }
    }
    public sealed partial class AssemblyResolveEventArgs : System.EventArgs
    {
        public AssemblyResolveEventArgs(Mono.Cecil.AssemblyNameReference reference) { }
        public Mono.Cecil.AssemblyNameReference AssemblyReference { get { throw null; } }
    }
    public delegate Mono.Cecil.AssemblyDefinition AssemblyResolveEventHandler(object sender, Mono.Cecil.AssemblyNameReference reference);
    public abstract partial class BaseAssemblyResolver : Mono.Cecil.IAssemblyResolver, System.IDisposable
    {
        protected BaseAssemblyResolver() { }
        public event Mono.Cecil.AssemblyResolveEventHandler ResolveFailure { add { } remove { } }
        public void AddSearchDirectory(string directory) { }
        public void Dispose() { }
        protected virtual void Dispose(bool disposing) { }
        public string[] GetSearchDirectories() { throw null; }
        public void RemoveSearchDirectory(string directory) { }
        public virtual Mono.Cecil.AssemblyDefinition Resolve(Mono.Cecil.AssemblyNameReference name) { throw null; }
        public virtual Mono.Cecil.AssemblyDefinition Resolve(Mono.Cecil.AssemblyNameReference name, Mono.Cecil.ReaderParameters parameters) { throw null; }
        protected virtual Mono.Cecil.AssemblyDefinition SearchDirectory(Mono.Cecil.AssemblyNameReference name, System.Collections.Generic.IEnumerable<string> directories, Mono.Cecil.ReaderParameters parameters) { throw null; }
    }
    public sealed partial class ByReferenceType : Mono.Cecil.TypeSpecification
    {
        public ByReferenceType(Mono.Cecil.TypeReference type) { }
        public override string FullName { get { throw null; } }
        public override bool IsByReference { get { throw null; } }
        public override bool IsValueType { get { throw null; } set { } }
        public override string Name { get { throw null; } }
    }
    public sealed partial class CallSite : Mono.Cecil.IMetadataTokenProvider, Mono.Cecil.IMethodSignature
    {
        public CallSite(Mono.Cecil.TypeReference returnType) { }
        public Mono.Cecil.MethodCallingConvention CallingConvention { get { throw null; } set { } }
        public bool ExplicitThis { get { throw null; } set { } }
        public string FullName { get { throw null; } }
        public bool HasParameters { get { throw null; } }
        public bool HasThis { get { throw null; } set { } }
        public Mono.Cecil.MetadataToken MetadataToken { get { throw null; } set { } }
        public Mono.Cecil.MethodReturnType MethodReturnType { get { throw null; } }
        public Mono.Cecil.ModuleDefinition Module { get { throw null; } }
        public string Name { get { throw null; } set { } }
        public string Namespace { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.ParameterDefinition> Parameters { get { throw null; } }
        public Mono.Cecil.TypeReference ReturnType { get { throw null; } set { } }
        public Mono.Cecil.IMetadataScope Scope { get { throw null; } }
        public override string ToString() { throw null; }
    }
    [System.Diagnostics.DebuggerDisplayAttribute("{AttributeType}")]
    public sealed partial class CustomAttribute : Mono.Cecil.ICustomAttribute
    {
        public CustomAttribute(Mono.Cecil.MethodReference constructor) { }
        public CustomAttribute(Mono.Cecil.MethodReference constructor, byte[] blob) { }
        public Mono.Cecil.TypeReference AttributeType { get { throw null; } }
        public Mono.Cecil.MethodReference Constructor { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttributeArgument> ConstructorArguments { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttributeNamedArgument> Fields { get { throw null; } }
        public bool HasConstructorArguments { get { throw null; } }
        public bool HasFields { get { throw null; } }
        public bool HasProperties { get { throw null; } }
        public bool IsResolved { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttributeNamedArgument> Properties { get { throw null; } }
        public byte[] GetBlob() { throw null; }
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct CustomAttributeArgument
    {
        private object _dummy;
        public CustomAttributeArgument(Mono.Cecil.TypeReference type, object value) { throw null; }
        public Mono.Cecil.TypeReference Type { get { throw null; } }
        public object Value { get { throw null; } }
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct CustomAttributeNamedArgument
    {
        private object _dummy;
        public CustomAttributeNamedArgument(string name, Mono.Cecil.CustomAttributeArgument argument) { throw null; }
        public Mono.Cecil.CustomAttributeArgument Argument { get { throw null; } }
        public string Name { get { throw null; } }
    }
    public sealed partial class CustomMarshalInfo : Mono.Cecil.MarshalInfo
    {
        public CustomMarshalInfo() : base (default(Mono.Cecil.NativeType)) { }
        public string Cookie { get { throw null; } set { } }
        public System.Guid Guid { get { throw null; } set { } }
        public Mono.Cecil.TypeReference ManagedType { get { throw null; } set { } }
        public string UnmanagedType { get { throw null; } set { } }
    }
    public partial class DefaultAssemblyResolver : Mono.Cecil.BaseAssemblyResolver
    {
        public DefaultAssemblyResolver() { }
        protected override void Dispose(bool disposing) { }
        protected void RegisterAssembly(Mono.Cecil.AssemblyDefinition assembly) { }
        public override Mono.Cecil.AssemblyDefinition Resolve(Mono.Cecil.AssemblyNameReference name) { throw null; }
    }
    public partial class DefaultMetadataImporter : Mono.Cecil.IMetadataImporter
    {
        protected readonly Mono.Cecil.ModuleDefinition module;
        public DefaultMetadataImporter(Mono.Cecil.ModuleDefinition module) { }
        public virtual Mono.Cecil.AssemblyNameReference ImportReference(Mono.Cecil.AssemblyNameReference name) { throw null; }
        public virtual Mono.Cecil.FieldReference ImportReference(Mono.Cecil.FieldReference field, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        public virtual Mono.Cecil.MethodReference ImportReference(Mono.Cecil.MethodReference method, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        public virtual Mono.Cecil.TypeReference ImportReference(Mono.Cecil.TypeReference type, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        protected Mono.Cecil.IMetadataScope ImportScope(Mono.Cecil.IMetadataScope scope) { throw null; }
        protected virtual Mono.Cecil.IMetadataScope ImportScope(Mono.Cecil.TypeReference type) { throw null; }
    }
    public partial class DefaultReflectionImporter : Mono.Cecil.IReflectionImporter
    {
        protected readonly Mono.Cecil.ModuleDefinition module;
        public DefaultReflectionImporter(Mono.Cecil.ModuleDefinition module) { }
        public virtual Mono.Cecil.AssemblyNameReference ImportReference(System.Reflection.AssemblyName name) { throw null; }
        public virtual Mono.Cecil.FieldReference ImportReference(System.Reflection.FieldInfo field, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        public virtual Mono.Cecil.MethodReference ImportReference(System.Reflection.MethodBase method, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        public virtual Mono.Cecil.TypeReference ImportReference(System.Type type, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        protected Mono.Cecil.AssemblyNameReference ImportScope(System.Reflection.Assembly assembly) { throw null; }
        protected virtual Mono.Cecil.IMetadataScope ImportScope(System.Type type) { throw null; }
    }
    public sealed partial class EmbeddedResource : Mono.Cecil.Resource
    {
        public EmbeddedResource(string name, Mono.Cecil.ManifestResourceAttributes attributes, byte[] data) { }
        public EmbeddedResource(string name, Mono.Cecil.ManifestResourceAttributes attributes, System.IO.Stream stream) { }
        public override Mono.Cecil.ResourceType ResourceType { get { throw null; } }
        public byte[] GetResourceData() { throw null; }
        public System.IO.Stream GetResourceStream() { throw null; }
    }
    [System.FlagsAttribute]
    public enum EventAttributes : ushort
    {
        None = (ushort)0,
        RTSpecialName = (ushort)1024,
        SpecialName = (ushort)512,
    }
    public sealed partial class EventDefinition : Mono.Cecil.EventReference, Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMemberDefinition, Mono.Cecil.IMetadataTokenProvider
    {
        public EventDefinition(string name, Mono.Cecil.EventAttributes attributes, Mono.Cecil.TypeReference eventType) : base (default(string), default(Mono.Cecil.TypeReference)) { }
        public Mono.Cecil.MethodDefinition AddMethod { get { throw null; } set { } }
        public Mono.Cecil.EventAttributes Attributes { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get { throw null; } }
        public new Mono.Cecil.TypeDefinition DeclaringType { get { throw null; } set { } }
        public bool HasCustomAttributes { get { throw null; } }
        public bool HasOtherMethods { get { throw null; } }
        public Mono.Cecil.MethodDefinition InvokeMethod { get { throw null; } set { } }
        public override bool IsDefinition { get { throw null; } }
        public bool IsRuntimeSpecialName { get { throw null; } set { } }
        public bool IsSpecialName { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.MethodDefinition> OtherMethods { get { throw null; } }
        public Mono.Cecil.MethodDefinition RemoveMethod { get { throw null; } set { } }
        public override Mono.Cecil.EventDefinition Resolve() { throw null; }
    }
    public abstract partial class EventReference : Mono.Cecil.MemberReference
    {
        protected EventReference(string name, Mono.Cecil.TypeReference eventType) { }
        public Mono.Cecil.TypeReference EventType { get { throw null; } set { } }
        public override string FullName { get { throw null; } }
        public abstract new Mono.Cecil.EventDefinition Resolve();
        protected override Mono.Cecil.IMemberDefinition ResolveDefinition() { throw null; }
    }
    public sealed partial class ExportedType : Mono.Cecil.IMetadataTokenProvider
    {
        public ExportedType(string @namespace, string name, Mono.Cecil.ModuleDefinition module, Mono.Cecil.IMetadataScope scope) { }
        public Mono.Cecil.TypeAttributes Attributes { get { throw null; } set { } }
        public Mono.Cecil.ExportedType DeclaringType { get { throw null; } set { } }
        public string FullName { get { throw null; } }
        public bool HasSecurity { get { throw null; } set { } }
        public int Identifier { get { throw null; } set { } }
        public bool IsAbstract { get { throw null; } set { } }
        public bool IsAnsiClass { get { throw null; } set { } }
        public bool IsAutoClass { get { throw null; } set { } }
        public bool IsAutoLayout { get { throw null; } set { } }
        public bool IsBeforeFieldInit { get { throw null; } set { } }
        public bool IsClass { get { throw null; } set { } }
        public bool IsExplicitLayout { get { throw null; } set { } }
        public bool IsForwarder { get { throw null; } set { } }
        public bool IsImport { get { throw null; } set { } }
        public bool IsInterface { get { throw null; } set { } }
        public bool IsNestedAssembly { get { throw null; } set { } }
        public bool IsNestedFamily { get { throw null; } set { } }
        public bool IsNestedFamilyAndAssembly { get { throw null; } set { } }
        public bool IsNestedFamilyOrAssembly { get { throw null; } set { } }
        public bool IsNestedPrivate { get { throw null; } set { } }
        public bool IsNestedPublic { get { throw null; } set { } }
        public bool IsNotPublic { get { throw null; } set { } }
        public bool IsPublic { get { throw null; } set { } }
        public bool IsRuntimeSpecialName { get { throw null; } set { } }
        public bool IsSealed { get { throw null; } set { } }
        public bool IsSequentialLayout { get { throw null; } set { } }
        public bool IsSerializable { get { throw null; } set { } }
        public bool IsSpecialName { get { throw null; } set { } }
        public bool IsUnicodeClass { get { throw null; } set { } }
        public Mono.Cecil.MetadataToken MetadataToken { get { throw null; } set { } }
        public string Name { get { throw null; } set { } }
        public string Namespace { get { throw null; } set { } }
        public Mono.Cecil.IMetadataScope Scope { get { throw null; } set { } }
        public Mono.Cecil.TypeDefinition Resolve() { throw null; }
        public override string ToString() { throw null; }
    }
    [System.FlagsAttribute]
    public enum FieldAttributes : ushort
    {
        Assembly = (ushort)3,
        CompilerControlled = (ushort)0,
        FamANDAssem = (ushort)2,
        Family = (ushort)4,
        FamORAssem = (ushort)5,
        FieldAccessMask = (ushort)7,
        HasDefault = (ushort)32768,
        HasFieldMarshal = (ushort)4096,
        HasFieldRVA = (ushort)256,
        InitOnly = (ushort)32,
        Literal = (ushort)64,
        NotSerialized = (ushort)128,
        PInvokeImpl = (ushort)8192,
        Private = (ushort)1,
        Public = (ushort)6,
        RTSpecialName = (ushort)1024,
        SpecialName = (ushort)512,
        Static = (ushort)16,
    }
    public sealed partial class FieldDefinition : Mono.Cecil.FieldReference, Mono.Cecil.IConstantProvider, Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMarshalInfoProvider, Mono.Cecil.IMemberDefinition, Mono.Cecil.IMetadataTokenProvider
    {
        public FieldDefinition(string name, Mono.Cecil.FieldAttributes attributes, Mono.Cecil.TypeReference fieldType) : base (default(string), default(Mono.Cecil.TypeReference)) { }
        public Mono.Cecil.FieldAttributes Attributes { get { throw null; } set { } }
        public object Constant { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get { throw null; } }
        public new Mono.Cecil.TypeDefinition DeclaringType { get { throw null; } set { } }
        public bool HasConstant { get { throw null; } set { } }
        public bool HasCustomAttributes { get { throw null; } }
        public bool HasDefault { get { throw null; } set { } }
        public bool HasLayoutInfo { get { throw null; } }
        public bool HasMarshalInfo { get { throw null; } }
        public byte[] InitialValue { get { throw null; } set { } }
        public bool IsAssembly { get { throw null; } set { } }
        public bool IsCompilerControlled { get { throw null; } set { } }
        public override bool IsDefinition { get { throw null; } }
        public bool IsFamily { get { throw null; } set { } }
        public bool IsFamilyAndAssembly { get { throw null; } set { } }
        public bool IsFamilyOrAssembly { get { throw null; } set { } }
        public bool IsInitOnly { get { throw null; } set { } }
        public bool IsLiteral { get { throw null; } set { } }
        public bool IsNotSerialized { get { throw null; } set { } }
        public bool IsPInvokeImpl { get { throw null; } set { } }
        public bool IsPrivate { get { throw null; } set { } }
        public bool IsPublic { get { throw null; } set { } }
        public bool IsRuntimeSpecialName { get { throw null; } set { } }
        public bool IsSpecialName { get { throw null; } set { } }
        public bool IsStatic { get { throw null; } set { } }
        public Mono.Cecil.MarshalInfo MarshalInfo { get { throw null; } set { } }
        public int Offset { get { throw null; } set { } }
        public int RVA { get { throw null; } }
        public override Mono.Cecil.FieldDefinition Resolve() { throw null; }
    }
    public partial class FieldReference : Mono.Cecil.MemberReference
    {
        public FieldReference(string name, Mono.Cecil.TypeReference fieldType) { }
        public FieldReference(string name, Mono.Cecil.TypeReference fieldType, Mono.Cecil.TypeReference declaringType) { }
        public override bool ContainsGenericParameter { get { throw null; } }
        public Mono.Cecil.TypeReference FieldType { get { throw null; } set { } }
        public override string FullName { get { throw null; } }
        public virtual new Mono.Cecil.FieldDefinition Resolve() { throw null; }
        protected override Mono.Cecil.IMemberDefinition ResolveDefinition() { throw null; }
    }
    public sealed partial class FixedArrayMarshalInfo : Mono.Cecil.MarshalInfo
    {
        public FixedArrayMarshalInfo() : base (default(Mono.Cecil.NativeType)) { }
        public Mono.Cecil.NativeType ElementType { get { throw null; } set { } }
        public int Size { get { throw null; } set { } }
    }
    public sealed partial class FixedSysStringMarshalInfo : Mono.Cecil.MarshalInfo
    {
        public FixedSysStringMarshalInfo() : base (default(Mono.Cecil.NativeType)) { }
        public int Size { get { throw null; } set { } }
    }
    public sealed partial class FunctionPointerType : Mono.Cecil.TypeSpecification, Mono.Cecil.IMetadataTokenProvider, Mono.Cecil.IMethodSignature
    {
        public FunctionPointerType() { }
        public Mono.Cecil.MethodCallingConvention CallingConvention { get { throw null; } set { } }
        public override bool ContainsGenericParameter { get { throw null; } }
        public bool ExplicitThis { get { throw null; } set { } }
        public override string FullName { get { throw null; } }
        public bool HasParameters { get { throw null; } }
        public bool HasThis { get { throw null; } set { } }
        public override bool IsFunctionPointer { get { throw null; } }
        public Mono.Cecil.MethodReturnType MethodReturnType { get { throw null; } }
        public override Mono.Cecil.ModuleDefinition Module { get { throw null; } }
        public override string Name { get { throw null; } set { } }
        public override string Namespace { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.ParameterDefinition> Parameters { get { throw null; } }
        public Mono.Cecil.TypeReference ReturnType { get { throw null; } set { } }
        public override Mono.Cecil.IMetadataScope Scope { get { throw null; } set { } }
        public override Mono.Cecil.TypeReference GetElementType() { throw null; }
        public override Mono.Cecil.TypeDefinition Resolve() { throw null; }
    }
    public sealed partial class GenericInstanceMethod : Mono.Cecil.MethodSpecification, Mono.Cecil.IGenericInstance, Mono.Cecil.IMetadataTokenProvider
    {
        public GenericInstanceMethod(Mono.Cecil.MethodReference method) { }
        public override bool ContainsGenericParameter { get { throw null; } }
        public override string FullName { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.TypeReference> GenericArguments { get { throw null; } }
        public bool HasGenericArguments { get { throw null; } }
        public override bool IsGenericInstance { get { throw null; } }
    }
    public sealed partial class GenericInstanceType : Mono.Cecil.TypeSpecification, Mono.Cecil.IGenericInstance, Mono.Cecil.IMetadataTokenProvider
    {
        public GenericInstanceType(Mono.Cecil.TypeReference type) { }
        public override bool ContainsGenericParameter { get { throw null; } }
        public override Mono.Cecil.TypeReference DeclaringType { get { throw null; } set { } }
        public override string FullName { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.TypeReference> GenericArguments { get { throw null; } }
        public bool HasGenericArguments { get { throw null; } }
        public override bool IsGenericInstance { get { throw null; } }
    }
    public sealed partial class GenericParameter : Mono.Cecil.TypeReference, Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMetadataTokenProvider
    {
        public GenericParameter(Mono.Cecil.IGenericParameterProvider owner) : base (default(string), default(string)) { }
        public GenericParameter(string name, Mono.Cecil.IGenericParameterProvider owner) : base (default(string), default(string)) { }
        public Mono.Cecil.GenericParameterAttributes Attributes { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.GenericParameterConstraint> Constraints { get { throw null; } }
        public override bool ContainsGenericParameter { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get { throw null; } }
        public Mono.Cecil.MethodReference DeclaringMethod { get { throw null; } }
        public override Mono.Cecil.TypeReference DeclaringType { get { throw null; } set { } }
        public override string FullName { get { throw null; } }
        public bool HasConstraints { get { throw null; } }
        public bool HasCustomAttributes { get { throw null; } }
        public bool HasDefaultConstructorConstraint { get { throw null; } set { } }
        public bool HasNotNullableValueTypeConstraint { get { throw null; } set { } }
        public bool HasReferenceTypeConstraint { get { throw null; } set { } }
        public bool IsContravariant { get { throw null; } set { } }
        public bool IsCovariant { get { throw null; } set { } }
        public override bool IsGenericParameter { get { throw null; } }
        public bool IsNonVariant { get { throw null; } set { } }
        public override Mono.Cecil.MetadataType MetadataType { get { throw null; } }
        public override Mono.Cecil.ModuleDefinition Module { get { throw null; } }
        public override string Name { get { throw null; } }
        public override string Namespace { get { throw null; } set { } }
        public Mono.Cecil.IGenericParameterProvider Owner { get { throw null; } }
        public int Position { get { throw null; } }
        public override Mono.Cecil.IMetadataScope Scope { get { throw null; } set { } }
        public Mono.Cecil.GenericParameterType Type { get { throw null; } }
        public override Mono.Cecil.TypeDefinition Resolve() { throw null; }
    }
    [System.FlagsAttribute]
    public enum GenericParameterAttributes : ushort
    {
        Contravariant = (ushort)2,
        Covariant = (ushort)1,
        DefaultConstructorConstraint = (ushort)16,
        NonVariant = (ushort)0,
        NotNullableValueTypeConstraint = (ushort)8,
        ReferenceTypeConstraint = (ushort)4,
        SpecialConstraintMask = (ushort)28,
        VarianceMask = (ushort)3,
    }
    public sealed partial class GenericParameterConstraint : Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMetadataTokenProvider
    {
        public GenericParameterConstraint(Mono.Cecil.TypeReference constraintType) { }
        public Mono.Cecil.TypeReference ConstraintType { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get { throw null; } }
        public bool HasCustomAttributes { get { throw null; } }
        public Mono.Cecil.MetadataToken MetadataToken { get { throw null; } set { } }
    }
    public enum GenericParameterType
    {
        Method = 1,
        Type = 0,
    }
    public partial interface IAssemblyResolver : System.IDisposable
    {
        Mono.Cecil.AssemblyDefinition Resolve(Mono.Cecil.AssemblyNameReference name);
        Mono.Cecil.AssemblyDefinition Resolve(Mono.Cecil.AssemblyNameReference name, Mono.Cecil.ReaderParameters parameters);
    }
    public partial interface IConstantProvider : Mono.Cecil.IMetadataTokenProvider
    {
        object Constant { get; set; }
        bool HasConstant { get; set; }
    }
    public partial interface ICustomAttribute
    {
        Mono.Cecil.TypeReference AttributeType { get; }
        Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttributeArgument> ConstructorArguments { get; }
        Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttributeNamedArgument> Fields { get; }
        bool HasConstructorArguments { get; }
        bool HasFields { get; }
        bool HasProperties { get; }
        Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttributeNamedArgument> Properties { get; }
    }
    public partial interface ICustomAttributeProvider : Mono.Cecil.IMetadataTokenProvider
    {
        Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get; }
        bool HasCustomAttributes { get; }
    }
    public partial interface IGenericInstance : Mono.Cecil.IMetadataTokenProvider
    {
        Mono.Collections.Generic.Collection<Mono.Cecil.TypeReference> GenericArguments { get; }
        bool HasGenericArguments { get; }
    }
    public partial interface IGenericParameterProvider : Mono.Cecil.IMetadataTokenProvider
    {
        Mono.Collections.Generic.Collection<Mono.Cecil.GenericParameter> GenericParameters { get; }
        Mono.Cecil.GenericParameterType GenericParameterType { get; }
        bool HasGenericParameters { get; }
        bool IsDefinition { get; }
        Mono.Cecil.ModuleDefinition Module { get; }
    }
    public partial interface IMarshalInfoProvider : Mono.Cecil.IMetadataTokenProvider
    {
        bool HasMarshalInfo { get; }
        Mono.Cecil.MarshalInfo MarshalInfo { get; set; }
    }
    public partial interface IMemberDefinition : Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMetadataTokenProvider
    {
        Mono.Cecil.TypeDefinition DeclaringType { get; set; }
        string FullName { get; }
        bool IsRuntimeSpecialName { get; set; }
        bool IsSpecialName { get; set; }
        string Name { get; set; }
    }
    public partial interface IMetadataImporter
    {
        Mono.Cecil.AssemblyNameReference ImportReference(Mono.Cecil.AssemblyNameReference reference);
        Mono.Cecil.FieldReference ImportReference(Mono.Cecil.FieldReference field, Mono.Cecil.IGenericParameterProvider context);
        Mono.Cecil.MethodReference ImportReference(Mono.Cecil.MethodReference method, Mono.Cecil.IGenericParameterProvider context);
        Mono.Cecil.TypeReference ImportReference(Mono.Cecil.TypeReference type, Mono.Cecil.IGenericParameterProvider context);
    }
    public partial interface IMetadataImporterProvider
    {
        Mono.Cecil.IMetadataImporter GetMetadataImporter(Mono.Cecil.ModuleDefinition module);
    }
    public partial interface IMetadataResolver
    {
        Mono.Cecil.FieldDefinition Resolve(Mono.Cecil.FieldReference field);
        Mono.Cecil.MethodDefinition Resolve(Mono.Cecil.MethodReference method);
        Mono.Cecil.TypeDefinition Resolve(Mono.Cecil.TypeReference type);
    }
    public partial interface IMetadataScope : Mono.Cecil.IMetadataTokenProvider
    {
        Mono.Cecil.MetadataScopeType MetadataScopeType { get; }
        string Name { get; set; }
    }
    public partial interface IMetadataTokenProvider
    {
        Mono.Cecil.MetadataToken MetadataToken { get; set; }
    }
    public partial interface IMethodSignature : Mono.Cecil.IMetadataTokenProvider
    {
        Mono.Cecil.MethodCallingConvention CallingConvention { get; set; }
        bool ExplicitThis { get; set; }
        bool HasParameters { get; }
        bool HasThis { get; set; }
        Mono.Cecil.MethodReturnType MethodReturnType { get; }
        Mono.Collections.Generic.Collection<Mono.Cecil.ParameterDefinition> Parameters { get; }
        Mono.Cecil.TypeReference ReturnType { get; set; }
    }
    public partial interface IModifierType
    {
        Mono.Cecil.TypeReference ElementType { get; }
        Mono.Cecil.TypeReference ModifierType { get; }
    }
    public sealed partial class InterfaceImplementation : Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMetadataTokenProvider
    {
        public InterfaceImplementation(Mono.Cecil.TypeReference interfaceType) { }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get { throw null; } }
        public bool HasCustomAttributes { get { throw null; } }
        public Mono.Cecil.TypeReference InterfaceType { get { throw null; } set { } }
        public Mono.Cecil.MetadataToken MetadataToken { get { throw null; } set { } }
    }
    public partial interface IReflectionImporter
    {
        Mono.Cecil.AssemblyNameReference ImportReference(System.Reflection.AssemblyName reference);
        Mono.Cecil.FieldReference ImportReference(System.Reflection.FieldInfo field, Mono.Cecil.IGenericParameterProvider context);
        Mono.Cecil.MethodReference ImportReference(System.Reflection.MethodBase method, Mono.Cecil.IGenericParameterProvider context);
        Mono.Cecil.TypeReference ImportReference(System.Type type, Mono.Cecil.IGenericParameterProvider context);
    }
    public partial interface IReflectionImporterProvider
    {
        Mono.Cecil.IReflectionImporter GetReflectionImporter(Mono.Cecil.ModuleDefinition module);
    }
    public partial interface ISecurityDeclarationProvider : Mono.Cecil.IMetadataTokenProvider
    {
        bool HasSecurityDeclarations { get; }
        Mono.Collections.Generic.Collection<Mono.Cecil.SecurityDeclaration> SecurityDeclarations { get; }
    }
    public sealed partial class LinkedResource : Mono.Cecil.Resource
    {
        public LinkedResource(string name, Mono.Cecil.ManifestResourceAttributes flags) { }
        public LinkedResource(string name, Mono.Cecil.ManifestResourceAttributes flags, string file) { }
        public string File { get { throw null; } set { } }
        public byte[] Hash { get { throw null; } }
        public override Mono.Cecil.ResourceType ResourceType { get { throw null; } }
    }
    [System.FlagsAttribute]
    public enum ManifestResourceAttributes : uint
    {
        Private = (uint)2,
        Public = (uint)1,
        VisibilityMask = (uint)7,
    }
    public partial class MarshalInfo
    {
        public MarshalInfo(Mono.Cecil.NativeType native) { }
        public Mono.Cecil.NativeType NativeType { get { throw null; } set { } }
    }
    public abstract partial class MemberReference : Mono.Cecil.IMetadataTokenProvider
    {
        internal MemberReference() { }
        public virtual bool ContainsGenericParameter { get { throw null; } }
        public virtual Mono.Cecil.TypeReference DeclaringType { get { throw null; } set { } }
        public abstract string FullName { get; }
        public virtual bool IsDefinition { get { throw null; } }
        public bool IsWindowsRuntimeProjection { get { throw null; } }
        public Mono.Cecil.MetadataToken MetadataToken { get { throw null; } set { } }
        public virtual Mono.Cecil.ModuleDefinition Module { get { throw null; } }
        public virtual string Name { get { throw null; } set { } }
        public Mono.Cecil.IMemberDefinition Resolve() { throw null; }
        protected abstract Mono.Cecil.IMemberDefinition ResolveDefinition();
        public override string ToString() { throw null; }
    }
    public enum MetadataKind
    {
        Ecma335 = 0,
        ManagedWindowsMetadata = 2,
        WindowsMetadata = 1,
    }
    public partial class MetadataResolver : Mono.Cecil.IMetadataResolver
    {
        public MetadataResolver(Mono.Cecil.IAssemblyResolver assemblyResolver) { }
        public Mono.Cecil.IAssemblyResolver AssemblyResolver { get { throw null; } }
        public static Mono.Cecil.MethodDefinition GetMethod(Mono.Collections.Generic.Collection<Mono.Cecil.MethodDefinition> methods, Mono.Cecil.MethodReference reference) { throw null; }
        public virtual Mono.Cecil.FieldDefinition Resolve(Mono.Cecil.FieldReference field) { throw null; }
        public virtual Mono.Cecil.MethodDefinition Resolve(Mono.Cecil.MethodReference method) { throw null; }
        public virtual Mono.Cecil.TypeDefinition Resolve(Mono.Cecil.TypeReference type) { throw null; }
    }
    public enum MetadataScopeType
    {
        AssemblyNameReference = 0,
        ModuleDefinition = 2,
        ModuleReference = 1,
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct MetadataToken : System.IEquatable<Mono.Cecil.MetadataToken>
    {
        private int _dummyPrimitive;
        public static readonly Mono.Cecil.MetadataToken Zero;
        public MetadataToken(Mono.Cecil.TokenType type) { throw null; }
        public MetadataToken(Mono.Cecil.TokenType type, int rid) { throw null; }
        public MetadataToken(Mono.Cecil.TokenType type, uint rid) { throw null; }
        public MetadataToken(uint token) { throw null; }
        public uint RID { get { throw null; } }
        public Mono.Cecil.TokenType TokenType { get { throw null; } }
        public bool Equals(Mono.Cecil.MetadataToken other) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public static bool operator ==(Mono.Cecil.MetadataToken one, Mono.Cecil.MetadataToken other) { throw null; }
        public static bool operator !=(Mono.Cecil.MetadataToken one, Mono.Cecil.MetadataToken other) { throw null; }
        public int ToInt32() { throw null; }
        public override string ToString() { throw null; }
        public uint ToUInt32() { throw null; }
    }
    public enum MetadataType : byte
    {
        Array = (byte)20,
        Boolean = (byte)2,
        ByReference = (byte)16,
        Byte = (byte)5,
        Char = (byte)3,
        Class = (byte)18,
        Double = (byte)13,
        FunctionPointer = (byte)27,
        GenericInstance = (byte)21,
        Int16 = (byte)6,
        Int32 = (byte)8,
        Int64 = (byte)10,
        IntPtr = (byte)24,
        MVar = (byte)30,
        Object = (byte)28,
        OptionalModifier = (byte)32,
        Pinned = (byte)69,
        Pointer = (byte)15,
        RequiredModifier = (byte)31,
        SByte = (byte)4,
        Sentinel = (byte)65,
        Single = (byte)12,
        String = (byte)14,
        TypedByReference = (byte)22,
        UInt16 = (byte)7,
        UInt32 = (byte)9,
        UInt64 = (byte)11,
        UIntPtr = (byte)25,
        ValueType = (byte)17,
        Var = (byte)19,
        Void = (byte)1,
    }
    [System.FlagsAttribute]
    public enum MethodAttributes : ushort
    {
        Abstract = (ushort)1024,
        Assembly = (ushort)3,
        CheckAccessOnOverride = (ushort)512,
        CompilerControlled = (ushort)0,
        FamANDAssem = (ushort)2,
        Family = (ushort)4,
        FamORAssem = (ushort)5,
        Final = (ushort)32,
        HasSecurity = (ushort)16384,
        HideBySig = (ushort)128,
        MemberAccessMask = (ushort)7,
        NewSlot = (ushort)256,
        PInvokeImpl = (ushort)8192,
        Private = (ushort)1,
        Public = (ushort)6,
        RequireSecObject = (ushort)32768,
        ReuseSlot = (ushort)0,
        RTSpecialName = (ushort)4096,
        SpecialName = (ushort)2048,
        Static = (ushort)16,
        UnmanagedExport = (ushort)8,
        Virtual = (ushort)64,
        VtableLayoutMask = (ushort)256,
    }
    public enum MethodCallingConvention : byte
    {
        C = (byte)1,
        Default = (byte)0,
        FastCall = (byte)4,
        Generic = (byte)16,
        StdCall = (byte)2,
        ThisCall = (byte)3,
        VarArg = (byte)5,
    }
    public sealed partial class MethodDefinition : Mono.Cecil.MethodReference, Mono.Cecil.Cil.ICustomDebugInformationProvider, Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMemberDefinition, Mono.Cecil.IMetadataTokenProvider, Mono.Cecil.ISecurityDeclarationProvider
    {
        public MethodDefinition(string name, Mono.Cecil.MethodAttributes attributes, Mono.Cecil.TypeReference returnType) : base (default(string), default(Mono.Cecil.TypeReference)) { }
        public bool AggressiveInlining { get { throw null; } set { } }
        public Mono.Cecil.MethodAttributes Attributes { get { throw null; } set { } }
        public Mono.Cecil.Cil.MethodBody Body { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.CustomDebugInformation> CustomDebugInformations { get { throw null; } }
        public Mono.Cecil.Cil.MethodDebugInformation DebugInformation { get { throw null; } set { } }
        public new Mono.Cecil.TypeDefinition DeclaringType { get { throw null; } set { } }
        public override Mono.Collections.Generic.Collection<Mono.Cecil.GenericParameter> GenericParameters { get { throw null; } }
        public bool HasBody { get { throw null; } }
        public bool HasCustomAttributes { get { throw null; } }
        public bool HasCustomDebugInformations { get { throw null; } }
        public override bool HasGenericParameters { get { throw null; } }
        public bool HasOverrides { get { throw null; } }
        public bool HasPInvokeInfo { get { throw null; } }
        public bool HasSecurity { get { throw null; } set { } }
        public bool HasSecurityDeclarations { get { throw null; } }
        public Mono.Cecil.MethodImplAttributes ImplAttributes { get { throw null; } set { } }
        public bool IsAbstract { get { throw null; } set { } }
        public bool IsAddOn { get { throw null; } set { } }
        public bool IsAssembly { get { throw null; } set { } }
        public bool IsCheckAccessOnOverride { get { throw null; } set { } }
        public bool IsCompilerControlled { get { throw null; } set { } }
        public bool IsConstructor { get { throw null; } }
        public override bool IsDefinition { get { throw null; } }
        public bool IsFamily { get { throw null; } set { } }
        public bool IsFamilyAndAssembly { get { throw null; } set { } }
        public bool IsFamilyOrAssembly { get { throw null; } set { } }
        public bool IsFinal { get { throw null; } set { } }
        public bool IsFire { get { throw null; } set { } }
        public bool IsForwardRef { get { throw null; } set { } }
        public bool IsGetter { get { throw null; } set { } }
        public bool IsHideBySig { get { throw null; } set { } }
        public bool IsIL { get { throw null; } set { } }
        public bool IsInternalCall { get { throw null; } set { } }
        public bool IsManaged { get { throw null; } set { } }
        public bool IsNative { get { throw null; } set { } }
        public bool IsNewSlot { get { throw null; } set { } }
        public bool IsOther { get { throw null; } set { } }
        public bool IsPInvokeImpl { get { throw null; } set { } }
        public bool IsPreserveSig { get { throw null; } set { } }
        public bool IsPrivate { get { throw null; } set { } }
        public bool IsPublic { get { throw null; } set { } }
        public bool IsRemoveOn { get { throw null; } set { } }
        public bool IsReuseSlot { get { throw null; } set { } }
        public bool IsRuntime { get { throw null; } set { } }
        public bool IsRuntimeSpecialName { get { throw null; } set { } }
        public bool IsSetter { get { throw null; } set { } }
        public bool IsSpecialName { get { throw null; } set { } }
        public bool IsStatic { get { throw null; } set { } }
        public bool IsSynchronized { get { throw null; } set { } }
        public bool IsUnmanaged { get { throw null; } set { } }
        public bool IsUnmanagedExport { get { throw null; } set { } }
        public bool IsVirtual { get { throw null; } set { } }
        public override string Name { get { throw null; } set { } }
        public bool NoInlining { get { throw null; } set { } }
        public bool NoOptimization { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.MethodReference> Overrides { get { throw null; } }
        public Mono.Cecil.PInvokeInfo PInvokeInfo { get { throw null; } set { } }
        public int RVA { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.SecurityDeclaration> SecurityDeclarations { get { throw null; } }
        public Mono.Cecil.MethodSemanticsAttributes SemanticsAttributes { get { throw null; } set { } }
        public override Mono.Cecil.MethodDefinition Resolve() { throw null; }
    }
    [System.FlagsAttribute]
    public enum MethodImplAttributes : ushort
    {
        AggressiveInlining = (ushort)256,
        CodeTypeMask = (ushort)3,
        ForwardRef = (ushort)16,
        IL = (ushort)0,
        InternalCall = (ushort)4096,
        Managed = (ushort)0,
        ManagedMask = (ushort)4,
        Native = (ushort)1,
        NoInlining = (ushort)8,
        NoOptimization = (ushort)64,
        OPTIL = (ushort)2,
        PreserveSig = (ushort)128,
        Runtime = (ushort)3,
        Synchronized = (ushort)32,
        Unmanaged = (ushort)4,
    }
    public partial class MethodReference : Mono.Cecil.MemberReference, Mono.Cecil.IGenericParameterProvider, Mono.Cecil.IMetadataTokenProvider, Mono.Cecil.IMethodSignature
    {
        public MethodReference(string name, Mono.Cecil.TypeReference returnType) { }
        public MethodReference(string name, Mono.Cecil.TypeReference returnType, Mono.Cecil.TypeReference declaringType) { }
        public virtual Mono.Cecil.MethodCallingConvention CallingConvention { get { throw null; } set { } }
        public override bool ContainsGenericParameter { get { throw null; } }
        public virtual bool ExplicitThis { get { throw null; } set { } }
        public override string FullName { get { throw null; } }
        public virtual Mono.Collections.Generic.Collection<Mono.Cecil.GenericParameter> GenericParameters { get { throw null; } }
        public virtual bool HasGenericParameters { get { throw null; } }
        public virtual bool HasParameters { get { throw null; } }
        public virtual bool HasThis { get { throw null; } set { } }
        public virtual bool IsGenericInstance { get { throw null; } }
        public virtual Mono.Cecil.MethodReturnType MethodReturnType { get { throw null; } set { } }
        Mono.Cecil.GenericParameterType Mono.Cecil.IGenericParameterProvider.GenericParameterType { get { throw null; } }
        public virtual Mono.Collections.Generic.Collection<Mono.Cecil.ParameterDefinition> Parameters { get { throw null; } }
        public Mono.Cecil.TypeReference ReturnType { get { throw null; } set { } }
        public virtual Mono.Cecil.MethodReference GetElementMethod() { throw null; }
        public virtual new Mono.Cecil.MethodDefinition Resolve() { throw null; }
        protected override Mono.Cecil.IMemberDefinition ResolveDefinition() { throw null; }
    }
    public sealed partial class MethodReturnType : Mono.Cecil.IConstantProvider, Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMarshalInfoProvider, Mono.Cecil.IMetadataTokenProvider
    {
        public MethodReturnType(Mono.Cecil.IMethodSignature method) { }
        public Mono.Cecil.ParameterAttributes Attributes { get { throw null; } set { } }
        public object Constant { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get { throw null; } }
        public bool HasConstant { get { throw null; } set { } }
        public bool HasCustomAttributes { get { throw null; } }
        public bool HasDefault { get { throw null; } set { } }
        public bool HasFieldMarshal { get { throw null; } set { } }
        public bool HasMarshalInfo { get { throw null; } }
        public Mono.Cecil.MarshalInfo MarshalInfo { get { throw null; } set { } }
        public Mono.Cecil.MetadataToken MetadataToken { get { throw null; } set { } }
        public Mono.Cecil.IMethodSignature Method { get { throw null; } }
        public string Name { get { throw null; } set { } }
        public Mono.Cecil.TypeReference ReturnType { get { throw null; } set { } }
    }
    [System.FlagsAttribute]
    public enum MethodSemanticsAttributes : ushort
    {
        AddOn = (ushort)8,
        Fire = (ushort)32,
        Getter = (ushort)2,
        None = (ushort)0,
        Other = (ushort)4,
        RemoveOn = (ushort)16,
        Setter = (ushort)1,
    }
    public abstract partial class MethodSpecification : Mono.Cecil.MethodReference
    {
        internal MethodSpecification() : base (default(string), default(Mono.Cecil.TypeReference)) { }
        public override Mono.Cecil.MethodCallingConvention CallingConvention { get { throw null; } set { } }
        public override bool ContainsGenericParameter { get { throw null; } }
        public override Mono.Cecil.TypeReference DeclaringType { get { throw null; } set { } }
        public Mono.Cecil.MethodReference ElementMethod { get { throw null; } }
        public override bool ExplicitThis { get { throw null; } set { } }
        public override bool HasParameters { get { throw null; } }
        public override bool HasThis { get { throw null; } set { } }
        public override Mono.Cecil.MethodReturnType MethodReturnType { get { throw null; } set { } }
        public override Mono.Cecil.ModuleDefinition Module { get { throw null; } }
        public override string Name { get { throw null; } set { } }
        public override Mono.Collections.Generic.Collection<Mono.Cecil.ParameterDefinition> Parameters { get { throw null; } }
        public sealed override Mono.Cecil.MethodReference GetElementMethod() { throw null; }
    }
    [System.FlagsAttribute]
    public enum ModuleAttributes
    {
        ILLibrary = 4,
        ILOnly = 1,
        Preferred32Bit = 131072,
        Required32Bit = 2,
        StrongNameSigned = 8,
    }
    [System.FlagsAttribute]
    public enum ModuleCharacteristics
    {
        AppContainer = 4096,
        DynamicBase = 64,
        HighEntropyVA = 32,
        NoSEH = 1024,
        NXCompat = 256,
        TerminalServerAware = 32768,
    }
    public sealed partial class ModuleDefinition : Mono.Cecil.ModuleReference, Mono.Cecil.Cil.ICustomDebugInformationProvider, Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMetadataTokenProvider, System.IDisposable
    {
        internal ModuleDefinition() : base (default(string)) { }
        public Mono.Cecil.TargetArchitecture Architecture { get { throw null; } set { } }
        public Mono.Cecil.AssemblyDefinition Assembly { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.AssemblyNameReference> AssemblyReferences { get { throw null; } }
        public Mono.Cecil.IAssemblyResolver AssemblyResolver { get { throw null; } }
        public Mono.Cecil.ModuleAttributes Attributes { get { throw null; } set { } }
        public Mono.Cecil.ModuleCharacteristics Characteristics { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.CustomDebugInformation> CustomDebugInformations { get { throw null; } }
        public Mono.Cecil.MethodDefinition EntryPoint { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.ExportedType> ExportedTypes { get { throw null; } }
        public string FileName { get { throw null; } }
        [System.ObsoleteAttribute("Use FileName")]
        public string FullyQualifiedName { get { throw null; } }
        public bool HasAssemblyReferences { get { throw null; } }
        public bool HasCustomAttributes { get { throw null; } }
        public bool HasCustomDebugInformations { get { throw null; } }
        public bool HasDebugHeader { get { throw null; } }
        public bool HasExportedTypes { get { throw null; } }
        public bool HasModuleReferences { get { throw null; } }
        public bool HasResources { get { throw null; } }
        public bool HasSymbols { get { throw null; } }
        public bool HasTypes { get { throw null; } }
        public bool IsMain { get { throw null; } }
        public Mono.Cecil.ModuleKind Kind { get { throw null; } set { } }
        public Mono.Cecil.MetadataKind MetadataKind { get { throw null; } set { } }
        public Mono.Cecil.IMetadataResolver MetadataResolver { get { throw null; } }
        public override Mono.Cecil.MetadataScopeType MetadataScopeType { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.ModuleReference> ModuleReferences { get { throw null; } }
        public System.Guid Mvid { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Resource> Resources { get { throw null; } }
        public Mono.Cecil.TargetRuntime Runtime { get { throw null; } set { } }
        public string RuntimeVersion { get { throw null; } set { } }
        public Mono.Cecil.Cil.ISymbolReader SymbolReader { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.TypeDefinition> Types { get { throw null; } }
        public Mono.Cecil.TypeSystem TypeSystem { get { throw null; } }
        public static Mono.Cecil.ModuleDefinition CreateModule(string name, Mono.Cecil.ModuleKind kind) { throw null; }
        public static Mono.Cecil.ModuleDefinition CreateModule(string name, Mono.Cecil.ModuleParameters parameters) { throw null; }
        public void Dispose() { }
        public System.Collections.Generic.IEnumerable<Mono.Cecil.CustomAttribute> GetCustomAttributes() { throw null; }
        public Mono.Cecil.Cil.ImageDebugHeader GetDebugHeader() { throw null; }
        public System.Collections.Generic.IEnumerable<Mono.Cecil.MemberReference> GetMemberReferences() { throw null; }
        public Mono.Cecil.TypeDefinition GetType(string fullName) { throw null; }
        public Mono.Cecil.TypeReference GetType(string fullName, bool runtimeName) { throw null; }
        public Mono.Cecil.TypeDefinition GetType(string @namespace, string name) { throw null; }
        public System.Collections.Generic.IEnumerable<Mono.Cecil.TypeReference> GetTypeReferences() { throw null; }
        public System.Collections.Generic.IEnumerable<Mono.Cecil.TypeDefinition> GetTypes() { throw null; }
        public bool HasTypeReference(string fullName) { throw null; }
        public bool HasTypeReference(string scope, string fullName) { throw null; }
        [System.ObsoleteAttribute("Use ImportReference", false)]
        public Mono.Cecil.FieldReference Import(Mono.Cecil.FieldReference field) { throw null; }
        [System.ObsoleteAttribute("Use ImportReference", false)]
        public Mono.Cecil.FieldReference Import(Mono.Cecil.FieldReference field, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        [System.ObsoleteAttribute("Use ImportReference", false)]
        public Mono.Cecil.MethodReference Import(Mono.Cecil.MethodReference method) { throw null; }
        [System.ObsoleteAttribute("Use ImportReference", false)]
        public Mono.Cecil.MethodReference Import(Mono.Cecil.MethodReference method, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        [System.ObsoleteAttribute("Use ImportReference", false)]
        public Mono.Cecil.TypeReference Import(Mono.Cecil.TypeReference type) { throw null; }
        [System.ObsoleteAttribute("Use ImportReference", false)]
        public Mono.Cecil.TypeReference Import(Mono.Cecil.TypeReference type, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        [System.ObsoleteAttribute("Use ImportReference", false)]
        public Mono.Cecil.FieldReference Import(System.Reflection.FieldInfo field) { throw null; }
        [System.ObsoleteAttribute("Use ImportReference", false)]
        public Mono.Cecil.FieldReference Import(System.Reflection.FieldInfo field, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        [System.ObsoleteAttribute("Use ImportReference", false)]
        public Mono.Cecil.MethodReference Import(System.Reflection.MethodBase method) { throw null; }
        [System.ObsoleteAttribute("Use ImportReference", false)]
        public Mono.Cecil.MethodReference Import(System.Reflection.MethodBase method, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        [System.ObsoleteAttribute("Use ImportReference", false)]
        public Mono.Cecil.TypeReference Import(System.Type type) { throw null; }
        [System.ObsoleteAttribute("Use ImportReference", false)]
        public Mono.Cecil.TypeReference Import(System.Type type, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        public Mono.Cecil.FieldReference ImportReference(Mono.Cecil.FieldReference field) { throw null; }
        public Mono.Cecil.FieldReference ImportReference(Mono.Cecil.FieldReference field, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        public Mono.Cecil.MethodReference ImportReference(Mono.Cecil.MethodReference method) { throw null; }
        public Mono.Cecil.MethodReference ImportReference(Mono.Cecil.MethodReference method, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        public Mono.Cecil.TypeReference ImportReference(Mono.Cecil.TypeReference type) { throw null; }
        public Mono.Cecil.TypeReference ImportReference(Mono.Cecil.TypeReference type, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        public Mono.Cecil.FieldReference ImportReference(System.Reflection.FieldInfo field) { throw null; }
        public Mono.Cecil.FieldReference ImportReference(System.Reflection.FieldInfo field, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        public Mono.Cecil.MethodReference ImportReference(System.Reflection.MethodBase method) { throw null; }
        public Mono.Cecil.MethodReference ImportReference(System.Reflection.MethodBase method, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        public Mono.Cecil.TypeReference ImportReference(System.Type type) { throw null; }
        public Mono.Cecil.TypeReference ImportReference(System.Type type, Mono.Cecil.IGenericParameterProvider context) { throw null; }
        public Mono.Cecil.IMetadataTokenProvider LookupToken(Mono.Cecil.MetadataToken token) { throw null; }
        public Mono.Cecil.IMetadataTokenProvider LookupToken(int token) { throw null; }
        public static Mono.Cecil.ModuleDefinition ReadModule(System.IO.Stream stream) { throw null; }
        public static Mono.Cecil.ModuleDefinition ReadModule(System.IO.Stream stream, Mono.Cecil.ReaderParameters parameters) { throw null; }
        public static Mono.Cecil.ModuleDefinition ReadModule(string fileName) { throw null; }
        public static Mono.Cecil.ModuleDefinition ReadModule(string fileName, Mono.Cecil.ReaderParameters parameters) { throw null; }
        public void ReadSymbols() { }
        public void ReadSymbols(Mono.Cecil.Cil.ISymbolReader reader) { }
        public void ReadSymbols(Mono.Cecil.Cil.ISymbolReader reader, bool throwIfSymbolsAreNotMaching) { }
        public bool TryGetTypeReference(string fullName, out Mono.Cecil.TypeReference type) { throw null; }
        public bool TryGetTypeReference(string scope, string fullName, out Mono.Cecil.TypeReference type) { throw null; }
        public void Write() { }
        public void Write(Mono.Cecil.WriterParameters parameters) { }
        public void Write(System.IO.Stream stream) { }
        public void Write(System.IO.Stream stream, Mono.Cecil.WriterParameters parameters) { }
        public void Write(string fileName) { }
        public void Write(string fileName, Mono.Cecil.WriterParameters parameters) { }
    }
    public enum ModuleKind
    {
        Console = 1,
        Dll = 0,
        NetModule = 3,
        Windows = 2,
    }
    public sealed partial class ModuleParameters
    {
        public ModuleParameters() { }
        public Mono.Cecil.TargetArchitecture Architecture { get { throw null; } set { } }
        public Mono.Cecil.IAssemblyResolver AssemblyResolver { get { throw null; } set { } }
        public Mono.Cecil.ModuleKind Kind { get { throw null; } set { } }
        public Mono.Cecil.IMetadataImporterProvider MetadataImporterProvider { get { throw null; } set { } }
        public Mono.Cecil.IMetadataResolver MetadataResolver { get { throw null; } set { } }
        public Mono.Cecil.IReflectionImporterProvider ReflectionImporterProvider { get { throw null; } set { } }
        public Mono.Cecil.TargetRuntime Runtime { get { throw null; } set { } }
        public System.Nullable<uint> Timestamp { get { throw null; } set { } }
    }
    public partial class ModuleReference : Mono.Cecil.IMetadataScope, Mono.Cecil.IMetadataTokenProvider
    {
        public ModuleReference(string name) { }
        public virtual Mono.Cecil.MetadataScopeType MetadataScopeType { get { throw null; } }
        public Mono.Cecil.MetadataToken MetadataToken { get { throw null; } set { } }
        public string Name { get { throw null; } set { } }
        public override string ToString() { throw null; }
    }
    public enum NativeType
    {
        ANSIBStr = 35,
        Array = 42,
        ASAny = 40,
        Boolean = 2,
        BStr = 19,
        ByValStr = 34,
        Currency = 15,
        CustomMarshaler = 44,
        Error = 45,
        FixedArray = 30,
        FixedSysString = 23,
        Func = 38,
        I1 = 3,
        I2 = 5,
        I4 = 7,
        I8 = 9,
        IDispatch = 26,
        Int = 31,
        IntF = 28,
        IUnknown = 25,
        LPStr = 20,
        LPStruct = 43,
        LPTStr = 22,
        LPWStr = 21,
        Max = 80,
        None = 102,
        R4 = 11,
        R8 = 12,
        SafeArray = 29,
        Struct = 27,
        TBStr = 36,
        U1 = 4,
        U2 = 6,
        U4 = 8,
        U8 = 10,
        UInt = 32,
        VariantBool = 37,
    }
    public sealed partial class OptionalModifierType : Mono.Cecil.TypeSpecification, Mono.Cecil.IModifierType
    {
        public OptionalModifierType(Mono.Cecil.TypeReference modifierType, Mono.Cecil.TypeReference type) { }
        public override bool ContainsGenericParameter { get { throw null; } }
        public override string FullName { get { throw null; } }
        public override bool IsOptionalModifier { get { throw null; } }
        public override bool IsValueType { get { throw null; } set { } }
        public Mono.Cecil.TypeReference ModifierType { get { throw null; } set { } }
        public override string Name { get { throw null; } }
    }
    [System.FlagsAttribute]
    public enum ParameterAttributes : ushort
    {
        HasDefault = (ushort)4096,
        HasFieldMarshal = (ushort)8192,
        In = (ushort)1,
        Lcid = (ushort)4,
        None = (ushort)0,
        Optional = (ushort)16,
        Out = (ushort)2,
        Retval = (ushort)8,
        Unused = (ushort)53216,
    }
    public sealed partial class ParameterDefinition : Mono.Cecil.ParameterReference, Mono.Cecil.IConstantProvider, Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMarshalInfoProvider, Mono.Cecil.IMetadataTokenProvider
    {
        public ParameterDefinition(Mono.Cecil.TypeReference parameterType) { }
        public ParameterDefinition(string name, Mono.Cecil.ParameterAttributes attributes, Mono.Cecil.TypeReference parameterType) { }
        public Mono.Cecil.ParameterAttributes Attributes { get { throw null; } set { } }
        public object Constant { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get { throw null; } }
        public bool HasConstant { get { throw null; } set { } }
        public bool HasCustomAttributes { get { throw null; } }
        public bool HasDefault { get { throw null; } set { } }
        public bool HasFieldMarshal { get { throw null; } set { } }
        public bool HasMarshalInfo { get { throw null; } }
        public bool IsIn { get { throw null; } set { } }
        public bool IsLcid { get { throw null; } set { } }
        public bool IsOptional { get { throw null; } set { } }
        public bool IsOut { get { throw null; } set { } }
        public bool IsReturnValue { get { throw null; } set { } }
        public Mono.Cecil.MarshalInfo MarshalInfo { get { throw null; } set { } }
        public Mono.Cecil.IMethodSignature Method { get { throw null; } }
        public int Sequence { get { throw null; } }
        public override Mono.Cecil.ParameterDefinition Resolve() { throw null; }
    }
    public abstract partial class ParameterReference : Mono.Cecil.IMetadataTokenProvider
    {
        internal ParameterReference() { }
        protected Mono.Cecil.TypeReference parameter_type;
        public int Index { get { throw null; } }
        public Mono.Cecil.MetadataToken MetadataToken { get { throw null; } set { } }
        public string Name { get { throw null; } set { } }
        public Mono.Cecil.TypeReference ParameterType { get { throw null; } set { } }
        public abstract Mono.Cecil.ParameterDefinition Resolve();
        public override string ToString() { throw null; }
    }
    public sealed partial class PinnedType : Mono.Cecil.TypeSpecification
    {
        public PinnedType(Mono.Cecil.TypeReference type) { }
        public override bool IsPinned { get { throw null; } }
        public override bool IsValueType { get { throw null; } set { } }
    }
    [System.FlagsAttribute]
    public enum PInvokeAttributes : ushort
    {
        BestFitDisabled = (ushort)32,
        BestFitEnabled = (ushort)16,
        BestFitMask = (ushort)48,
        CallConvCdecl = (ushort)512,
        CallConvFastcall = (ushort)1280,
        CallConvMask = (ushort)1792,
        CallConvStdCall = (ushort)768,
        CallConvThiscall = (ushort)1024,
        CallConvWinapi = (ushort)256,
        CharSetAnsi = (ushort)2,
        CharSetAuto = (ushort)6,
        CharSetMask = (ushort)6,
        CharSetNotSpec = (ushort)0,
        CharSetUnicode = (ushort)4,
        NoMangle = (ushort)1,
        SupportsLastError = (ushort)64,
        ThrowOnUnmappableCharDisabled = (ushort)8192,
        ThrowOnUnmappableCharEnabled = (ushort)4096,
        ThrowOnUnmappableCharMask = (ushort)12288,
    }
    public sealed partial class PInvokeInfo
    {
        public PInvokeInfo(Mono.Cecil.PInvokeAttributes attributes, string entryPoint, Mono.Cecil.ModuleReference module) { }
        public Mono.Cecil.PInvokeAttributes Attributes { get { throw null; } set { } }
        public string EntryPoint { get { throw null; } set { } }
        public bool IsBestFitDisabled { get { throw null; } set { } }
        public bool IsBestFitEnabled { get { throw null; } set { } }
        public bool IsCallConvCdecl { get { throw null; } set { } }
        public bool IsCallConvFastcall { get { throw null; } set { } }
        public bool IsCallConvStdCall { get { throw null; } set { } }
        public bool IsCallConvThiscall { get { throw null; } set { } }
        public bool IsCallConvWinapi { get { throw null; } set { } }
        public bool IsCharSetAnsi { get { throw null; } set { } }
        public bool IsCharSetAuto { get { throw null; } set { } }
        public bool IsCharSetNotSpec { get { throw null; } set { } }
        public bool IsCharSetUnicode { get { throw null; } set { } }
        public bool IsNoMangle { get { throw null; } set { } }
        public bool IsThrowOnUnmappableCharDisabled { get { throw null; } set { } }
        public bool IsThrowOnUnmappableCharEnabled { get { throw null; } set { } }
        public Mono.Cecil.ModuleReference Module { get { throw null; } set { } }
        public bool SupportsLastError { get { throw null; } set { } }
    }
    public sealed partial class PointerType : Mono.Cecil.TypeSpecification
    {
        public PointerType(Mono.Cecil.TypeReference type) { }
        public override string FullName { get { throw null; } }
        public override bool IsPointer { get { throw null; } }
        public override bool IsValueType { get { throw null; } set { } }
        public override string Name { get { throw null; } }
    }
    [System.FlagsAttribute]
    public enum PropertyAttributes : ushort
    {
        HasDefault = (ushort)4096,
        None = (ushort)0,
        RTSpecialName = (ushort)1024,
        SpecialName = (ushort)512,
        Unused = (ushort)59903,
    }
    public sealed partial class PropertyDefinition : Mono.Cecil.PropertyReference, Mono.Cecil.IConstantProvider, Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMemberDefinition, Mono.Cecil.IMetadataTokenProvider
    {
        public PropertyDefinition(string name, Mono.Cecil.PropertyAttributes attributes, Mono.Cecil.TypeReference propertyType) { }
        public Mono.Cecil.PropertyAttributes Attributes { get { throw null; } set { } }
        public object Constant { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get { throw null; } }
        public new Mono.Cecil.TypeDefinition DeclaringType { get { throw null; } set { } }
        public override string FullName { get { throw null; } }
        public Mono.Cecil.MethodDefinition GetMethod { get { throw null; } set { } }
        public bool HasConstant { get { throw null; } set { } }
        public bool HasCustomAttributes { get { throw null; } }
        public bool HasDefault { get { throw null; } set { } }
        public bool HasOtherMethods { get { throw null; } }
        public bool HasParameters { get { throw null; } }
        public bool HasThis { get { throw null; } set { } }
        public override bool IsDefinition { get { throw null; } }
        public bool IsRuntimeSpecialName { get { throw null; } set { } }
        public bool IsSpecialName { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.MethodDefinition> OtherMethods { get { throw null; } }
        public override Mono.Collections.Generic.Collection<Mono.Cecil.ParameterDefinition> Parameters { get { throw null; } }
        public Mono.Cecil.MethodDefinition SetMethod { get { throw null; } set { } }
        public override Mono.Cecil.PropertyDefinition Resolve() { throw null; }
    }
    public abstract partial class PropertyReference : Mono.Cecil.MemberReference
    {
        internal PropertyReference() { }
        public abstract Mono.Collections.Generic.Collection<Mono.Cecil.ParameterDefinition> Parameters { get; }
        public Mono.Cecil.TypeReference PropertyType { get { throw null; } set { } }
        public abstract new Mono.Cecil.PropertyDefinition Resolve();
        protected override Mono.Cecil.IMemberDefinition ResolveDefinition() { throw null; }
    }
    public sealed partial class ReaderParameters
    {
        public ReaderParameters() { }
        public ReaderParameters(Mono.Cecil.ReadingMode readingMode) { }
        public bool ApplyWindowsRuntimeProjections { get { throw null; } set { } }
        public Mono.Cecil.IAssemblyResolver AssemblyResolver { get { throw null; } set { } }
        public bool InMemory { get { throw null; } set { } }
        public Mono.Cecil.IMetadataImporterProvider MetadataImporterProvider { get { throw null; } set { } }
        public Mono.Cecil.IMetadataResolver MetadataResolver { get { throw null; } set { } }
        public Mono.Cecil.ReadingMode ReadingMode { get { throw null; } set { } }
        public bool ReadSymbols { get { throw null; } set { } }
        public bool ReadWrite { get { throw null; } set { } }
        public Mono.Cecil.IReflectionImporterProvider ReflectionImporterProvider { get { throw null; } set { } }
        public Mono.Cecil.Cil.ISymbolReaderProvider SymbolReaderProvider { get { throw null; } set { } }
        public System.IO.Stream SymbolStream { get { throw null; } set { } }
        public bool ThrowIfSymbolsAreNotMatching { get { throw null; } set { } }
    }
    public enum ReadingMode
    {
        Deferred = 2,
        Immediate = 1,
    }
    public sealed partial class RequiredModifierType : Mono.Cecil.TypeSpecification, Mono.Cecil.IModifierType
    {
        public RequiredModifierType(Mono.Cecil.TypeReference modifierType, Mono.Cecil.TypeReference type) { }
        public override bool ContainsGenericParameter { get { throw null; } }
        public override string FullName { get { throw null; } }
        public override bool IsRequiredModifier { get { throw null; } }
        public override bool IsValueType { get { throw null; } set { } }
        public Mono.Cecil.TypeReference ModifierType { get { throw null; } set { } }
        public override string Name { get { throw null; } }
    }
    [System.SerializableAttribute]
    public sealed partial class ResolutionException : System.Exception
    {
        public ResolutionException(Mono.Cecil.MemberReference member) { }
        public ResolutionException(Mono.Cecil.MemberReference member, System.Exception innerException) { }
        public Mono.Cecil.MemberReference Member { get { throw null; } }
        public Mono.Cecil.IMetadataScope Scope { get { throw null; } }
    }
    public abstract partial class Resource
    {
        internal Resource() { }
        public Mono.Cecil.ManifestResourceAttributes Attributes { get { throw null; } set { } }
        public bool IsPrivate { get { throw null; } set { } }
        public bool IsPublic { get { throw null; } set { } }
        public string Name { get { throw null; } set { } }
        public abstract Mono.Cecil.ResourceType ResourceType { get; }
    }
    public enum ResourceType
    {
        AssemblyLinked = 2,
        Embedded = 1,
        Linked = 0,
    }
    public sealed partial class SafeArrayMarshalInfo : Mono.Cecil.MarshalInfo
    {
        public SafeArrayMarshalInfo() : base (default(Mono.Cecil.NativeType)) { }
        public Mono.Cecil.VariantType ElementType { get { throw null; } set { } }
    }
    public enum SecurityAction : ushort
    {
        Assert = (ushort)3,
        Demand = (ushort)2,
        Deny = (ushort)4,
        InheritDemand = (ushort)7,
        LinkDemand = (ushort)6,
        NonCasDemand = (ushort)13,
        NonCasInheritance = (ushort)15,
        NonCasLinkDemand = (ushort)14,
        PermitOnly = (ushort)5,
        PreJitDeny = (ushort)12,
        PreJitGrant = (ushort)11,
        Request = (ushort)1,
        RequestMinimum = (ushort)8,
        RequestOptional = (ushort)9,
        RequestRefuse = (ushort)10,
    }
    [System.Diagnostics.DebuggerDisplayAttribute("{AttributeType}")]
    public sealed partial class SecurityAttribute : Mono.Cecil.ICustomAttribute
    {
        public SecurityAttribute(Mono.Cecil.TypeReference attributeType) { }
        public Mono.Cecil.TypeReference AttributeType { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttributeNamedArgument> Fields { get { throw null; } }
        public bool HasFields { get { throw null; } }
        public bool HasProperties { get { throw null; } }
        Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttributeArgument> Mono.Cecil.ICustomAttribute.ConstructorArguments { get { throw null; } }
        bool Mono.Cecil.ICustomAttribute.HasConstructorArguments { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttributeNamedArgument> Properties { get { throw null; } }
    }
    public sealed partial class SecurityDeclaration
    {
        public SecurityDeclaration(Mono.Cecil.SecurityAction action) { }
        public SecurityDeclaration(Mono.Cecil.SecurityAction action, byte[] blob) { }
        public Mono.Cecil.SecurityAction Action { get { throw null; } set { } }
        public bool HasSecurityAttributes { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.SecurityAttribute> SecurityAttributes { get { throw null; } }
        public byte[] GetBlob() { throw null; }
    }
    public sealed partial class SentinelType : Mono.Cecil.TypeSpecification
    {
        public SentinelType(Mono.Cecil.TypeReference type) { }
        public override bool IsSentinel { get { throw null; } }
        public override bool IsValueType { get { throw null; } set { } }
    }
    public enum TargetArchitecture
    {
        AMD64 = 34404,
        ARM = 448,
        ARM64 = 43620,
        ARMv7 = 452,
        I386 = 332,
        IA64 = 512,
    }
    public enum TargetRuntime
    {
        Net_1_0 = 0,
        Net_1_1 = 1,
        Net_2_0 = 2,
        Net_4_0 = 3,
    }
    public enum TokenType : uint
    {
        Assembly = (uint)536870912,
        AssemblyRef = (uint)587202560,
        CustomAttribute = (uint)201326592,
        CustomDebugInformation = (uint)922746880,
        Document = (uint)805306368,
        Event = (uint)335544320,
        ExportedType = (uint)654311424,
        Field = (uint)67108864,
        File = (uint)637534208,
        GenericParam = (uint)704643072,
        GenericParamConstraint = (uint)738197504,
        ImportScope = (uint)889192448,
        InterfaceImpl = (uint)150994944,
        LocalConstant = (uint)872415232,
        LocalScope = (uint)838860800,
        LocalVariable = (uint)855638016,
        ManifestResource = (uint)671088640,
        MemberRef = (uint)167772160,
        Method = (uint)100663296,
        MethodDebugInformation = (uint)822083584,
        MethodSpec = (uint)721420288,
        Module = (uint)0,
        ModuleRef = (uint)436207616,
        Param = (uint)134217728,
        Permission = (uint)234881024,
        Property = (uint)385875968,
        Signature = (uint)285212672,
        StateMachineMethod = (uint)905969664,
        String = (uint)1879048192,
        TypeDef = (uint)33554432,
        TypeRef = (uint)16777216,
        TypeSpec = (uint)452984832,
    }
    [System.FlagsAttribute]
    public enum TypeAttributes : uint
    {
        Abstract = (uint)128,
        AnsiClass = (uint)0,
        AutoClass = (uint)131072,
        AutoLayout = (uint)0,
        BeforeFieldInit = (uint)1048576,
        Class = (uint)0,
        ClassSemanticMask = (uint)32,
        ExplicitLayout = (uint)16,
        Forwarder = (uint)2097152,
        HasSecurity = (uint)262144,
        Import = (uint)4096,
        Interface = (uint)32,
        LayoutMask = (uint)24,
        NestedAssembly = (uint)5,
        NestedFamANDAssem = (uint)6,
        NestedFamily = (uint)4,
        NestedFamORAssem = (uint)7,
        NestedPrivate = (uint)3,
        NestedPublic = (uint)2,
        NotPublic = (uint)0,
        Public = (uint)1,
        RTSpecialName = (uint)2048,
        Sealed = (uint)256,
        SequentialLayout = (uint)8,
        Serializable = (uint)8192,
        SpecialName = (uint)1024,
        StringFormatMask = (uint)196608,
        UnicodeClass = (uint)65536,
        VisibilityMask = (uint)7,
        WindowsRuntime = (uint)16384,
    }
    public sealed partial class TypeDefinition : Mono.Cecil.TypeReference, Mono.Cecil.ICustomAttributeProvider, Mono.Cecil.IMemberDefinition, Mono.Cecil.IMetadataTokenProvider, Mono.Cecil.ISecurityDeclarationProvider
    {
        public TypeDefinition(string @namespace, string name, Mono.Cecil.TypeAttributes attributes) : base (default(string), default(string)) { }
        public TypeDefinition(string @namespace, string name, Mono.Cecil.TypeAttributes attributes, Mono.Cecil.TypeReference baseType) : base (default(string), default(string)) { }
        public Mono.Cecil.TypeAttributes Attributes { get { throw null; } set { } }
        public Mono.Cecil.TypeReference BaseType { get { throw null; } set { } }
        public int ClassSize { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.CustomAttribute> CustomAttributes { get { throw null; } }
        public new Mono.Cecil.TypeDefinition DeclaringType { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.EventDefinition> Events { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.FieldDefinition> Fields { get { throw null; } }
        public override Mono.Collections.Generic.Collection<Mono.Cecil.GenericParameter> GenericParameters { get { throw null; } }
        public bool HasCustomAttributes { get { throw null; } }
        public bool HasEvents { get { throw null; } }
        public bool HasFields { get { throw null; } }
        public override bool HasGenericParameters { get { throw null; } }
        public bool HasInterfaces { get { throw null; } }
        public bool HasLayoutInfo { get { throw null; } }
        public bool HasMethods { get { throw null; } }
        public bool HasNestedTypes { get { throw null; } }
        public bool HasProperties { get { throw null; } }
        public bool HasSecurity { get { throw null; } set { } }
        public bool HasSecurityDeclarations { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.InterfaceImplementation> Interfaces { get { throw null; } }
        public bool IsAbstract { get { throw null; } set { } }
        public bool IsAnsiClass { get { throw null; } set { } }
        public bool IsAutoClass { get { throw null; } set { } }
        public bool IsAutoLayout { get { throw null; } set { } }
        public bool IsBeforeFieldInit { get { throw null; } set { } }
        public bool IsClass { get { throw null; } set { } }
        public override bool IsDefinition { get { throw null; } }
        public bool IsEnum { get { throw null; } }
        public bool IsExplicitLayout { get { throw null; } set { } }
        public bool IsImport { get { throw null; } set { } }
        public bool IsInterface { get { throw null; } set { } }
        public bool IsNestedAssembly { get { throw null; } set { } }
        public bool IsNestedFamily { get { throw null; } set { } }
        public bool IsNestedFamilyAndAssembly { get { throw null; } set { } }
        public bool IsNestedFamilyOrAssembly { get { throw null; } set { } }
        public bool IsNestedPrivate { get { throw null; } set { } }
        public bool IsNestedPublic { get { throw null; } set { } }
        public bool IsNotPublic { get { throw null; } set { } }
        public override bool IsPrimitive { get { throw null; } }
        public bool IsPublic { get { throw null; } set { } }
        public bool IsRuntimeSpecialName { get { throw null; } set { } }
        public bool IsSealed { get { throw null; } set { } }
        public bool IsSequentialLayout { get { throw null; } set { } }
        public bool IsSerializable { get { throw null; } set { } }
        public bool IsSpecialName { get { throw null; } set { } }
        public bool IsUnicodeClass { get { throw null; } set { } }
        public override bool IsValueType { get { throw null; } set { } }
        public bool IsWindowsRuntime { get { throw null; } set { } }
        public override Mono.Cecil.MetadataType MetadataType { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.MethodDefinition> Methods { get { throw null; } }
        public override string Name { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.TypeDefinition> NestedTypes { get { throw null; } }
        public short PackingSize { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.PropertyDefinition> Properties { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.SecurityDeclaration> SecurityDeclarations { get { throw null; } }
        protected override void ClearFullName() { }
        public override Mono.Cecil.TypeDefinition Resolve() { throw null; }
    }
    public partial class TypeReference : Mono.Cecil.MemberReference, Mono.Cecil.IGenericParameterProvider, Mono.Cecil.IMetadataTokenProvider
    {
        protected Mono.Collections.Generic.Collection<Mono.Cecil.GenericParameter> generic_parameters;
        protected TypeReference(string @namespace, string name) { }
        public TypeReference(string @namespace, string name, Mono.Cecil.ModuleDefinition module, Mono.Cecil.IMetadataScope scope) { }
        public TypeReference(string @namespace, string name, Mono.Cecil.ModuleDefinition module, Mono.Cecil.IMetadataScope scope, bool valueType) { }
        public override Mono.Cecil.TypeReference DeclaringType { get { throw null; } set { } }
        public override string FullName { get { throw null; } }
        public virtual Mono.Collections.Generic.Collection<Mono.Cecil.GenericParameter> GenericParameters { get { throw null; } }
        public virtual bool HasGenericParameters { get { throw null; } }
        public virtual bool IsArray { get { throw null; } }
        public virtual bool IsByReference { get { throw null; } }
        public virtual bool IsFunctionPointer { get { throw null; } }
        public virtual bool IsGenericInstance { get { throw null; } }
        public virtual bool IsGenericParameter { get { throw null; } }
        public bool IsNested { get { throw null; } }
        public virtual bool IsOptionalModifier { get { throw null; } }
        public virtual bool IsPinned { get { throw null; } }
        public virtual bool IsPointer { get { throw null; } }
        public virtual bool IsPrimitive { get { throw null; } }
        public virtual bool IsRequiredModifier { get { throw null; } }
        public virtual bool IsSentinel { get { throw null; } }
        public virtual bool IsValueType { get { throw null; } set { } }
        public virtual Mono.Cecil.MetadataType MetadataType { get { throw null; } }
        public override Mono.Cecil.ModuleDefinition Module { get { throw null; } }
        Mono.Cecil.GenericParameterType Mono.Cecil.IGenericParameterProvider.GenericParameterType { get { throw null; } }
        public override string Name { get { throw null; } set { } }
        public virtual string Namespace { get { throw null; } set { } }
        public virtual Mono.Cecil.IMetadataScope Scope { get { throw null; } set { } }
        protected virtual void ClearFullName() { }
        public virtual Mono.Cecil.TypeReference GetElementType() { throw null; }
        public virtual new Mono.Cecil.TypeDefinition Resolve() { throw null; }
        protected override Mono.Cecil.IMemberDefinition ResolveDefinition() { throw null; }
    }
    public abstract partial class TypeSpecification : Mono.Cecil.TypeReference
    {
        internal TypeSpecification() : base (default(string), default(string)) { }
        public override bool ContainsGenericParameter { get { throw null; } }
        public Mono.Cecil.TypeReference ElementType { get { throw null; } }
        public override string FullName { get { throw null; } }
        public override Mono.Cecil.MetadataType MetadataType { get { throw null; } }
        public override Mono.Cecil.ModuleDefinition Module { get { throw null; } }
        public override string Name { get { throw null; } set { } }
        public override string Namespace { get { throw null; } set { } }
        public override Mono.Cecil.IMetadataScope Scope { get { throw null; } set { } }
        public override Mono.Cecil.TypeReference GetElementType() { throw null; }
    }
    public abstract partial class TypeSystem
    {
        internal TypeSystem() { }
        public Mono.Cecil.TypeReference Boolean { get { throw null; } }
        public Mono.Cecil.TypeReference Byte { get { throw null; } }
        public Mono.Cecil.TypeReference Char { get { throw null; } }
        public Mono.Cecil.IMetadataScope CoreLibrary { get { throw null; } }
        [System.ObsoleteAttribute("Use CoreLibrary")]
        public Mono.Cecil.IMetadataScope Corlib { get { throw null; } }
        public Mono.Cecil.TypeReference Double { get { throw null; } }
        public Mono.Cecil.TypeReference Int16 { get { throw null; } }
        public Mono.Cecil.TypeReference Int32 { get { throw null; } }
        public Mono.Cecil.TypeReference Int64 { get { throw null; } }
        public Mono.Cecil.TypeReference IntPtr { get { throw null; } }
        public Mono.Cecil.TypeReference Object { get { throw null; } }
        public Mono.Cecil.TypeReference SByte { get { throw null; } }
        public Mono.Cecil.TypeReference Single { get { throw null; } }
        public Mono.Cecil.TypeReference String { get { throw null; } }
        public Mono.Cecil.TypeReference TypedReference { get { throw null; } }
        public Mono.Cecil.TypeReference UInt16 { get { throw null; } }
        public Mono.Cecil.TypeReference UInt32 { get { throw null; } }
        public Mono.Cecil.TypeReference UInt64 { get { throw null; } }
        public Mono.Cecil.TypeReference UIntPtr { get { throw null; } }
        public Mono.Cecil.TypeReference Void { get { throw null; } }
    }
    public enum VariantType
    {
        Bool = 11,
        BStr = 8,
        CY = 6,
        Date = 7,
        Decimal = 14,
        Dispatch = 9,
        Error = 10,
        I1 = 16,
        I2 = 2,
        I4 = 3,
        I8 = 20,
        Int = 22,
        None = 0,
        R4 = 4,
        R8 = 5,
        UI1 = 17,
        UI2 = 18,
        UI4 = 19,
        UI8 = 21,
        UInt = 23,
        Unknown = 13,
        Variant = 12,
    }
    public sealed partial class WriterParameters
    {
        public WriterParameters() { }
        public bool DeterministicMvid { get { throw null; } set { } }
        public bool HasStrongNameKey { get { throw null; } }
        public byte[] StrongNameKeyBlob { get { throw null; } set { } }
        public string StrongNameKeyContainer { get { throw null; } set { } }
        public System.Reflection.StrongNameKeyPair StrongNameKeyPair { get { throw null; } set { } }
        public System.IO.Stream SymbolStream { get { throw null; } set { } }
        public Mono.Cecil.Cil.ISymbolWriterProvider SymbolWriterProvider { get { throw null; } set { } }
        public System.Nullable<uint> Timestamp { get { throw null; } set { } }
        public bool WriteSymbols { get { throw null; } set { } }
    }
}
namespace Mono.Cecil.Cil
{
    public sealed partial class AsyncMethodBodyDebugInformation : Mono.Cecil.Cil.CustomDebugInformation
    {
        public static System.Guid KindIdentifier;
        public AsyncMethodBodyDebugInformation() { }
        public AsyncMethodBodyDebugInformation(Mono.Cecil.Cil.Instruction catchHandler) { }
        public Mono.Cecil.Cil.InstructionOffset CatchHandler { get { throw null; } set { } }
        public override Mono.Cecil.Cil.CustomDebugInformationKind Kind { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.MethodDefinition> ResumeMethods { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.InstructionOffset> Resumes { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.InstructionOffset> Yields { get { throw null; } }
    }
    public sealed partial class BinaryCustomDebugInformation : Mono.Cecil.Cil.CustomDebugInformation
    {
        public BinaryCustomDebugInformation(System.Guid identifier, byte[] data) { }
        public byte[] Data { get { throw null; } set { } }
        public override Mono.Cecil.Cil.CustomDebugInformationKind Kind { get { throw null; } }
    }
    public enum Code
    {
        Add = 87,
        Add_Ovf = 180,
        Add_Ovf_Un = 181,
        And = 94,
        Arglist = 191,
        Beq = 58,
        Beq_S = 45,
        Bge = 59,
        Bge_S = 46,
        Bge_Un = 64,
        Bge_Un_S = 51,
        Bgt = 60,
        Bgt_S = 47,
        Bgt_Un = 65,
        Bgt_Un_S = 52,
        Ble = 61,
        Ble_S = 48,
        Ble_Un = 66,
        Ble_Un_S = 53,
        Blt = 62,
        Blt_S = 49,
        Blt_Un = 67,
        Blt_Un_S = 54,
        Bne_Un = 63,
        Bne_Un_S = 50,
        Box = 137,
        Br = 55,
        Break = 1,
        Brfalse = 56,
        Brfalse_S = 43,
        Brtrue = 57,
        Brtrue_S = 44,
        Br_S = 42,
        Call = 39,
        Calli = 40,
        Callvirt = 110,
        Castclass = 115,
        Ceq = 192,
        Cgt = 193,
        Cgt_Un = 194,
        Ckfinite = 172,
        Clt = 195,
        Clt_Un = 196,
        Constrained = 211,
        Conv_I = 177,
        Conv_I1 = 102,
        Conv_I2 = 103,
        Conv_I4 = 104,
        Conv_I8 = 105,
        Conv_Ovf_I = 178,
        Conv_Ovf_I1 = 163,
        Conv_Ovf_I1_Un = 127,
        Conv_Ovf_I2 = 165,
        Conv_Ovf_I2_Un = 128,
        Conv_Ovf_I4 = 167,
        Conv_Ovf_I4_Un = 129,
        Conv_Ovf_I8 = 169,
        Conv_Ovf_I8_Un = 130,
        Conv_Ovf_I_Un = 135,
        Conv_Ovf_U = 179,
        Conv_Ovf_U1 = 164,
        Conv_Ovf_U1_Un = 131,
        Conv_Ovf_U2 = 166,
        Conv_Ovf_U2_Un = 132,
        Conv_Ovf_U4 = 168,
        Conv_Ovf_U4_Un = 133,
        Conv_Ovf_U8 = 170,
        Conv_Ovf_U8_Un = 134,
        Conv_Ovf_U_Un = 136,
        Conv_R4 = 106,
        Conv_R8 = 107,
        Conv_R_Un = 117,
        Conv_U = 190,
        Conv_U1 = 176,
        Conv_U2 = 175,
        Conv_U4 = 108,
        Conv_U8 = 109,
        Cpblk = 212,
        Cpobj = 111,
        Div = 90,
        Div_Un = 91,
        Dup = 36,
        Endfilter = 206,
        Endfinally = 186,
        Initblk = 213,
        Initobj = 210,
        Isinst = 116,
        Jmp = 38,
        Ldarg = 199,
        Ldarga = 200,
        Ldarga_S = 15,
        Ldarg_0 = 2,
        Ldarg_1 = 3,
        Ldarg_2 = 4,
        Ldarg_3 = 5,
        Ldarg_S = 14,
        Ldc_I4 = 32,
        Ldc_I4_0 = 22,
        Ldc_I4_1 = 23,
        Ldc_I4_2 = 24,
        Ldc_I4_3 = 25,
        Ldc_I4_4 = 26,
        Ldc_I4_5 = 27,
        Ldc_I4_6 = 28,
        Ldc_I4_7 = 29,
        Ldc_I4_8 = 30,
        Ldc_I4_M1 = 21,
        Ldc_I4_S = 31,
        Ldc_I8 = 33,
        Ldc_R4 = 34,
        Ldc_R8 = 35,
        Ldelema = 140,
        Ldelem_Any = 160,
        Ldelem_I = 148,
        Ldelem_I1 = 141,
        Ldelem_I2 = 143,
        Ldelem_I4 = 145,
        Ldelem_I8 = 147,
        Ldelem_R4 = 149,
        Ldelem_R8 = 150,
        Ldelem_Ref = 151,
        Ldelem_U1 = 142,
        Ldelem_U2 = 144,
        Ldelem_U4 = 146,
        Ldfld = 120,
        Ldflda = 121,
        Ldftn = 197,
        Ldind_I = 76,
        Ldind_I1 = 69,
        Ldind_I2 = 71,
        Ldind_I4 = 73,
        Ldind_I8 = 75,
        Ldind_R4 = 77,
        Ldind_R8 = 78,
        Ldind_Ref = 79,
        Ldind_U1 = 70,
        Ldind_U2 = 72,
        Ldind_U4 = 74,
        Ldlen = 139,
        Ldloc = 202,
        Ldloca = 203,
        Ldloca_S = 18,
        Ldloc_0 = 6,
        Ldloc_1 = 7,
        Ldloc_2 = 8,
        Ldloc_3 = 9,
        Ldloc_S = 17,
        Ldnull = 20,
        Ldobj = 112,
        Ldsfld = 123,
        Ldsflda = 124,
        Ldstr = 113,
        Ldtoken = 174,
        Ldvirtftn = 198,
        Leave = 187,
        Leave_S = 188,
        Localloc = 205,
        Mkrefany = 173,
        Mul = 89,
        Mul_Ovf = 182,
        Mul_Ovf_Un = 183,
        Neg = 100,
        Newarr = 138,
        Newobj = 114,
        No = 214,
        Nop = 0,
        Not = 101,
        Or = 95,
        Pop = 37,
        Readonly = 218,
        Refanytype = 217,
        Refanyval = 171,
        Rem = 92,
        Rem_Un = 93,
        Ret = 41,
        Rethrow = 215,
        Shl = 97,
        Shr = 98,
        Shr_Un = 99,
        Sizeof = 216,
        Starg = 201,
        Starg_S = 16,
        Stelem_Any = 161,
        Stelem_I = 152,
        Stelem_I1 = 153,
        Stelem_I2 = 154,
        Stelem_I4 = 155,
        Stelem_I8 = 156,
        Stelem_R4 = 157,
        Stelem_R8 = 158,
        Stelem_Ref = 159,
        Stfld = 122,
        Stind_I = 189,
        Stind_I1 = 81,
        Stind_I2 = 82,
        Stind_I4 = 83,
        Stind_I8 = 84,
        Stind_R4 = 85,
        Stind_R8 = 86,
        Stind_Ref = 80,
        Stloc = 204,
        Stloc_0 = 10,
        Stloc_1 = 11,
        Stloc_2 = 12,
        Stloc_3 = 13,
        Stloc_S = 19,
        Stobj = 126,
        Stsfld = 125,
        Sub = 88,
        Sub_Ovf = 184,
        Sub_Ovf_Un = 185,
        Switch = 68,
        Tail = 209,
        Throw = 119,
        Unaligned = 207,
        Unbox = 118,
        Unbox_Any = 162,
        Volatile = 208,
        Xor = 96,
    }
    public sealed partial class ConstantDebugInformation : Mono.Cecil.Cil.DebugInformation
    {
        public ConstantDebugInformation(string name, Mono.Cecil.TypeReference constant_type, object value) { }
        public Mono.Cecil.TypeReference ConstantType { get { throw null; } set { } }
        public string Name { get { throw null; } set { } }
        public object Value { get { throw null; } set { } }
    }
    public abstract partial class CustomDebugInformation : Mono.Cecil.Cil.DebugInformation
    {
        internal CustomDebugInformation() { }
        public System.Guid Identifier { get { throw null; } }
        public abstract Mono.Cecil.Cil.CustomDebugInformationKind Kind { get; }
    }
    public enum CustomDebugInformationKind
    {
        AsyncMethodBody = 4,
        Binary = 0,
        DefaultNamespace = 3,
        DynamicVariable = 2,
        EmbeddedSource = 5,
        SourceLink = 6,
        StateMachineScope = 1,
    }
    public abstract partial class DebugInformation : Mono.Cecil.Cil.ICustomDebugInformationProvider, Mono.Cecil.IMetadataTokenProvider
    {
        internal DebugInformation() { }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.CustomDebugInformation> CustomDebugInformations { get { throw null; } }
        public bool HasCustomDebugInformations { get { throw null; } }
        public Mono.Cecil.MetadataToken MetadataToken { get { throw null; } set { } }
    }
    public partial class DefaultSymbolReaderProvider : Mono.Cecil.Cil.ISymbolReaderProvider
    {
        public DefaultSymbolReaderProvider() { }
        public DefaultSymbolReaderProvider(bool throwIfNoSymbol) { }
        public Mono.Cecil.Cil.ISymbolReader GetSymbolReader(Mono.Cecil.ModuleDefinition module, System.IO.Stream symbolStream) { throw null; }
        public Mono.Cecil.Cil.ISymbolReader GetSymbolReader(Mono.Cecil.ModuleDefinition module, string fileName) { throw null; }
    }
    public partial class DefaultSymbolWriterProvider : Mono.Cecil.Cil.ISymbolWriterProvider
    {
        public DefaultSymbolWriterProvider() { }
        public Mono.Cecil.Cil.ISymbolWriter GetSymbolWriter(Mono.Cecil.ModuleDefinition module, System.IO.Stream symbolStream) { throw null; }
        public Mono.Cecil.Cil.ISymbolWriter GetSymbolWriter(Mono.Cecil.ModuleDefinition module, string fileName) { throw null; }
    }
    public sealed partial class Document : Mono.Cecil.Cil.DebugInformation
    {
        public Document(string url) { }
        public byte[] EmbeddedSource { get { throw null; } set { } }
        public byte[] Hash { get { throw null; } set { } }
        public Mono.Cecil.Cil.DocumentHashAlgorithm HashAlgorithm { get { throw null; } set { } }
        public System.Guid HashAlgorithmGuid { get { throw null; } set { } }
        public Mono.Cecil.Cil.DocumentLanguage Language { get { throw null; } set { } }
        public System.Guid LanguageGuid { get { throw null; } set { } }
        public Mono.Cecil.Cil.DocumentLanguageVendor LanguageVendor { get { throw null; } set { } }
        public System.Guid LanguageVendorGuid { get { throw null; } set { } }
        public Mono.Cecil.Cil.DocumentType Type { get { throw null; } set { } }
        public System.Guid TypeGuid { get { throw null; } set { } }
        public string Url { get { throw null; } set { } }
    }
    public enum DocumentHashAlgorithm
    {
        MD5 = 1,
        None = 0,
        SHA1 = 2,
        SHA256 = 3,
    }
    public enum DocumentLanguage
    {
        Basic = 4,
        C = 1,
        Cil = 8,
        Cobol = 6,
        Cpp = 2,
        CSharp = 3,
        FSharp = 12,
        Java = 5,
        JScript = 9,
        MCpp = 11,
        Other = 0,
        Pascal = 7,
        Smc = 10,
    }
    public enum DocumentLanguageVendor
    {
        Microsoft = 1,
        Other = 0,
    }
    public enum DocumentType
    {
        Other = 0,
        Text = 1,
    }
    public sealed partial class EmbeddedPortablePdbReader : Mono.Cecil.Cil.ISymbolReader, System.IDisposable
    {
        internal EmbeddedPortablePdbReader() { }
        public void Dispose() { }
        public Mono.Cecil.Cil.ISymbolWriterProvider GetWriterProvider() { throw null; }
        public bool ProcessDebugHeader(Mono.Cecil.Cil.ImageDebugHeader header) { throw null; }
        public Mono.Cecil.Cil.MethodDebugInformation Read(Mono.Cecil.MethodDefinition method) { throw null; }
    }
    public sealed partial class EmbeddedPortablePdbReaderProvider : Mono.Cecil.Cil.ISymbolReaderProvider
    {
        public EmbeddedPortablePdbReaderProvider() { }
        public Mono.Cecil.Cil.ISymbolReader GetSymbolReader(Mono.Cecil.ModuleDefinition module, System.IO.Stream symbolStream) { throw null; }
        public Mono.Cecil.Cil.ISymbolReader GetSymbolReader(Mono.Cecil.ModuleDefinition module, string fileName) { throw null; }
    }
    public sealed partial class EmbeddedPortablePdbWriter : Mono.Cecil.Cil.ISymbolWriter, System.IDisposable
    {
        internal EmbeddedPortablePdbWriter() { }
        public void Dispose() { }
        public Mono.Cecil.Cil.ImageDebugHeader GetDebugHeader() { throw null; }
        public Mono.Cecil.Cil.ISymbolReaderProvider GetReaderProvider() { throw null; }
        public void Write(Mono.Cecil.Cil.MethodDebugInformation info) { }
    }
    public sealed partial class EmbeddedPortablePdbWriterProvider : Mono.Cecil.Cil.ISymbolWriterProvider
    {
        public EmbeddedPortablePdbWriterProvider() { }
        public Mono.Cecil.Cil.ISymbolWriter GetSymbolWriter(Mono.Cecil.ModuleDefinition module, System.IO.Stream symbolStream) { throw null; }
        public Mono.Cecil.Cil.ISymbolWriter GetSymbolWriter(Mono.Cecil.ModuleDefinition module, string fileName) { throw null; }
    }
    public sealed partial class EmbeddedSourceDebugInformation : Mono.Cecil.Cil.CustomDebugInformation
    {
        public static System.Guid KindIdentifier;
        public EmbeddedSourceDebugInformation(byte[] content, bool compress) { }
        public bool Compress { get { throw null; } set { } }
        public byte[] Content { get { throw null; } set { } }
        public override Mono.Cecil.Cil.CustomDebugInformationKind Kind { get { throw null; } }
    }
    public sealed partial class ExceptionHandler
    {
        public ExceptionHandler(Mono.Cecil.Cil.ExceptionHandlerType handlerType) { }
        public Mono.Cecil.TypeReference CatchType { get { throw null; } set { } }
        public Mono.Cecil.Cil.Instruction FilterStart { get { throw null; } set { } }
        public Mono.Cecil.Cil.Instruction HandlerEnd { get { throw null; } set { } }
        public Mono.Cecil.Cil.Instruction HandlerStart { get { throw null; } set { } }
        public Mono.Cecil.Cil.ExceptionHandlerType HandlerType { get { throw null; } set { } }
        public Mono.Cecil.Cil.Instruction TryEnd { get { throw null; } set { } }
        public Mono.Cecil.Cil.Instruction TryStart { get { throw null; } set { } }
    }
    public enum ExceptionHandlerType
    {
        Catch = 0,
        Fault = 4,
        Filter = 1,
        Finally = 2,
    }
    public enum FlowControl
    {
        Branch = 0,
        Break = 1,
        Call = 2,
        Cond_Branch = 3,
        Meta = 4,
        Next = 5,
        Phi = 6,
        Return = 7,
        Throw = 8,
    }
    public partial interface ICustomDebugInformationProvider : Mono.Cecil.IMetadataTokenProvider
    {
        Mono.Collections.Generic.Collection<Mono.Cecil.Cil.CustomDebugInformation> CustomDebugInformations { get; }
        bool HasCustomDebugInformations { get; }
    }
    public sealed partial class ILProcessor
    {
        internal ILProcessor() { }
        public Mono.Cecil.Cil.MethodBody Body { get { throw null; } }
        public void Append(Mono.Cecil.Cil.Instruction instruction) { }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.CallSite site) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.Cil.Instruction target) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.Cil.Instruction[] targets) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.Cil.VariableDefinition variable) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.FieldReference field) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.MethodReference method) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.ParameterDefinition parameter) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.TypeReference type) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, byte value) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, double value) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, int value) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, long value) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, sbyte value) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, float value) { throw null; }
        public Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, string value) { throw null; }
        public void Emit(Mono.Cecil.Cil.OpCode opcode) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.CallSite site) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.Cil.Instruction target) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.Cil.Instruction[] targets) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.Cil.VariableDefinition variable) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.FieldReference field) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.MethodReference method) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.ParameterDefinition parameter) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.TypeReference type) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, byte value) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, double value) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, int value) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, long value) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, sbyte value) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, float value) { }
        public void Emit(Mono.Cecil.Cil.OpCode opcode, string value) { }
        public void InsertAfter(Mono.Cecil.Cil.Instruction target, Mono.Cecil.Cil.Instruction instruction) { }
        public void InsertBefore(Mono.Cecil.Cil.Instruction target, Mono.Cecil.Cil.Instruction instruction) { }
        public void Remove(Mono.Cecil.Cil.Instruction instruction) { }
        public void Replace(Mono.Cecil.Cil.Instruction target, Mono.Cecil.Cil.Instruction instruction) { }
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct ImageDebugDirectory
    {
        public int AddressOfRawData;
        public int Characteristics;
        public short MajorVersion;
        public short MinorVersion;
        public int PointerToRawData;
        public const int Size = 28;
        public int SizeOfData;
        public int TimeDateStamp;
        public Mono.Cecil.Cil.ImageDebugType Type;
    }
    public sealed partial class ImageDebugHeader
    {
        public ImageDebugHeader() { }
        public ImageDebugHeader(Mono.Cecil.Cil.ImageDebugHeaderEntry entry) { }
        public ImageDebugHeader(Mono.Cecil.Cil.ImageDebugHeaderEntry[] entries) { }
        public Mono.Cecil.Cil.ImageDebugHeaderEntry[] Entries { get { throw null; } }
        public bool HasEntries { get { throw null; } }
    }
    public sealed partial class ImageDebugHeaderEntry
    {
        public ImageDebugHeaderEntry(Mono.Cecil.Cil.ImageDebugDirectory directory, byte[] data) { }
        public byte[] Data { get { throw null; } }
        public Mono.Cecil.Cil.ImageDebugDirectory Directory { get { throw null; } }
    }
    public enum ImageDebugType
    {
        CodeView = 2,
        Deterministic = 16,
        EmbeddedPortablePdb = 17,
    }
    public sealed partial class ImportDebugInformation : Mono.Cecil.Cil.DebugInformation
    {
        public ImportDebugInformation() { }
        public bool HasTargets { get { throw null; } }
        public Mono.Cecil.Cil.ImportDebugInformation Parent { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.ImportTarget> Targets { get { throw null; } }
    }
    public sealed partial class ImportTarget
    {
        public ImportTarget(Mono.Cecil.Cil.ImportTargetKind kind) { }
        public string Alias { get { throw null; } set { } }
        public Mono.Cecil.AssemblyNameReference AssemblyReference { get { throw null; } set { } }
        public Mono.Cecil.Cil.ImportTargetKind Kind { get { throw null; } set { } }
        public string Namespace { get { throw null; } set { } }
        public Mono.Cecil.TypeReference Type { get { throw null; } set { } }
    }
    public enum ImportTargetKind : byte
    {
        DefineAssemblyAlias = (byte)6,
        DefineNamespaceAlias = (byte)7,
        DefineNamespaceInAssemblyAlias = (byte)8,
        DefineTypeAlias = (byte)9,
        ImportAlias = (byte)5,
        ImportNamespace = (byte)1,
        ImportNamespaceInAssembly = (byte)2,
        ImportType = (byte)3,
        ImportXmlNamespaceWithAlias = (byte)4,
    }
    public sealed partial class Instruction
    {
        internal Instruction() { }
        public Mono.Cecil.Cil.Instruction Next { get { throw null; } set { } }
        public int Offset { get { throw null; } set { } }
        public Mono.Cecil.Cil.OpCode OpCode { get { throw null; } set { } }
        public object Operand { get { throw null; } set { } }
        public Mono.Cecil.Cil.Instruction Previous { get { throw null; } set { } }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.CallSite site) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.Cil.Instruction target) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.Cil.Instruction[] targets) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.Cil.VariableDefinition variable) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.FieldReference field) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.MethodReference method) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.ParameterDefinition parameter) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, Mono.Cecil.TypeReference type) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, byte value) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, double value) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, int value) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, long value) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, sbyte value) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, float value) { throw null; }
        public static Mono.Cecil.Cil.Instruction Create(Mono.Cecil.Cil.OpCode opcode, string value) { throw null; }
        public int GetSize() { throw null; }
        public override string ToString() { throw null; }
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct InstructionOffset
    {
        private object _dummy;
        private int _dummyPrimitive;
        public InstructionOffset(Mono.Cecil.Cil.Instruction instruction) { throw null; }
        public InstructionOffset(int offset) { throw null; }
        public bool IsEndOfMethod { get { throw null; } }
        public int Offset { get { throw null; } }
    }
    public partial interface ISymbolReader : System.IDisposable
    {
        Mono.Cecil.Cil.ISymbolWriterProvider GetWriterProvider();
        bool ProcessDebugHeader(Mono.Cecil.Cil.ImageDebugHeader header);
        Mono.Cecil.Cil.MethodDebugInformation Read(Mono.Cecil.MethodDefinition method);
    }
    public partial interface ISymbolReaderProvider
    {
        Mono.Cecil.Cil.ISymbolReader GetSymbolReader(Mono.Cecil.ModuleDefinition module, System.IO.Stream symbolStream);
        Mono.Cecil.Cil.ISymbolReader GetSymbolReader(Mono.Cecil.ModuleDefinition module, string fileName);
    }
    public partial interface ISymbolWriter : System.IDisposable
    {
        Mono.Cecil.Cil.ImageDebugHeader GetDebugHeader();
        Mono.Cecil.Cil.ISymbolReaderProvider GetReaderProvider();
        void Write(Mono.Cecil.Cil.MethodDebugInformation info);
    }
    public partial interface ISymbolWriterProvider
    {
        Mono.Cecil.Cil.ISymbolWriter GetSymbolWriter(Mono.Cecil.ModuleDefinition module, System.IO.Stream symbolStream);
        Mono.Cecil.Cil.ISymbolWriter GetSymbolWriter(Mono.Cecil.ModuleDefinition module, string fileName);
    }
    public sealed partial class MethodBody
    {
        public MethodBody(Mono.Cecil.MethodDefinition method) { }
        public int CodeSize { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.ExceptionHandler> ExceptionHandlers { get { throw null; } }
        public bool HasExceptionHandlers { get { throw null; } }
        public bool HasVariables { get { throw null; } }
        public bool InitLocals { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.Instruction> Instructions { get { throw null; } }
        public Mono.Cecil.MetadataToken LocalVarToken { get { throw null; } set { } }
        public int MaxStackSize { get { throw null; } set { } }
        public Mono.Cecil.MethodDefinition Method { get { throw null; } }
        public Mono.Cecil.ParameterDefinition ThisParameter { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.VariableDefinition> Variables { get { throw null; } }
        public Mono.Cecil.Cil.ILProcessor GetILProcessor() { throw null; }
    }
    public sealed partial class MethodDebugInformation : Mono.Cecil.Cil.DebugInformation
    {
        internal MethodDebugInformation() { }
        public bool HasSequencePoints { get { throw null; } }
        public Mono.Cecil.MethodDefinition Method { get { throw null; } }
        public Mono.Cecil.Cil.ScopeDebugInformation Scope { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.SequencePoint> SequencePoints { get { throw null; } }
        public Mono.Cecil.MethodDefinition StateMachineKickOffMethod { get { throw null; } set { } }
        public System.Collections.Generic.IEnumerable<Mono.Cecil.Cil.ScopeDebugInformation> GetScopes() { throw null; }
        public Mono.Cecil.Cil.SequencePoint GetSequencePoint(Mono.Cecil.Cil.Instruction instruction) { throw null; }
        public System.Collections.Generic.IDictionary<Mono.Cecil.Cil.Instruction, Mono.Cecil.Cil.SequencePoint> GetSequencePointMapping() { throw null; }
        public bool TryGetName(Mono.Cecil.Cil.VariableDefinition variable, out string name) { throw null; }
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct OpCode : System.IEquatable<Mono.Cecil.Cil.OpCode>
    {
        private int _dummyPrimitive;
        public Mono.Cecil.Cil.Code Code { get { throw null; } }
        public Mono.Cecil.Cil.FlowControl FlowControl { get { throw null; } }
        public string Name { get { throw null; } }
        public byte Op1 { get { throw null; } }
        public byte Op2 { get { throw null; } }
        public Mono.Cecil.Cil.OpCodeType OpCodeType { get { throw null; } }
        public Mono.Cecil.Cil.OperandType OperandType { get { throw null; } }
        public int Size { get { throw null; } }
        public Mono.Cecil.Cil.StackBehaviour StackBehaviourPop { get { throw null; } }
        public Mono.Cecil.Cil.StackBehaviour StackBehaviourPush { get { throw null; } }
        public short Value { get { throw null; } }
        public bool Equals(Mono.Cecil.Cil.OpCode opcode) { throw null; }
        public override bool Equals(object obj) { throw null; }
        public override int GetHashCode() { throw null; }
        public static bool operator ==(Mono.Cecil.Cil.OpCode one, Mono.Cecil.Cil.OpCode other) { throw null; }
        public static bool operator !=(Mono.Cecil.Cil.OpCode one, Mono.Cecil.Cil.OpCode other) { throw null; }
        public override string ToString() { throw null; }
    }
    public static partial class OpCodes
    {
        public static readonly Mono.Cecil.Cil.OpCode Add;
        public static readonly Mono.Cecil.Cil.OpCode Add_Ovf;
        public static readonly Mono.Cecil.Cil.OpCode Add_Ovf_Un;
        public static readonly Mono.Cecil.Cil.OpCode And;
        public static readonly Mono.Cecil.Cil.OpCode Arglist;
        public static readonly Mono.Cecil.Cil.OpCode Beq;
        public static readonly Mono.Cecil.Cil.OpCode Beq_S;
        public static readonly Mono.Cecil.Cil.OpCode Bge;
        public static readonly Mono.Cecil.Cil.OpCode Bge_S;
        public static readonly Mono.Cecil.Cil.OpCode Bge_Un;
        public static readonly Mono.Cecil.Cil.OpCode Bge_Un_S;
        public static readonly Mono.Cecil.Cil.OpCode Bgt;
        public static readonly Mono.Cecil.Cil.OpCode Bgt_S;
        public static readonly Mono.Cecil.Cil.OpCode Bgt_Un;
        public static readonly Mono.Cecil.Cil.OpCode Bgt_Un_S;
        public static readonly Mono.Cecil.Cil.OpCode Ble;
        public static readonly Mono.Cecil.Cil.OpCode Ble_S;
        public static readonly Mono.Cecil.Cil.OpCode Ble_Un;
        public static readonly Mono.Cecil.Cil.OpCode Ble_Un_S;
        public static readonly Mono.Cecil.Cil.OpCode Blt;
        public static readonly Mono.Cecil.Cil.OpCode Blt_S;
        public static readonly Mono.Cecil.Cil.OpCode Blt_Un;
        public static readonly Mono.Cecil.Cil.OpCode Blt_Un_S;
        public static readonly Mono.Cecil.Cil.OpCode Bne_Un;
        public static readonly Mono.Cecil.Cil.OpCode Bne_Un_S;
        public static readonly Mono.Cecil.Cil.OpCode Box;
        public static readonly Mono.Cecil.Cil.OpCode Br;
        public static readonly Mono.Cecil.Cil.OpCode Break;
        public static readonly Mono.Cecil.Cil.OpCode Brfalse;
        public static readonly Mono.Cecil.Cil.OpCode Brfalse_S;
        public static readonly Mono.Cecil.Cil.OpCode Brtrue;
        public static readonly Mono.Cecil.Cil.OpCode Brtrue_S;
        public static readonly Mono.Cecil.Cil.OpCode Br_S;
        public static readonly Mono.Cecil.Cil.OpCode Call;
        public static readonly Mono.Cecil.Cil.OpCode Calli;
        public static readonly Mono.Cecil.Cil.OpCode Callvirt;
        public static readonly Mono.Cecil.Cil.OpCode Castclass;
        public static readonly Mono.Cecil.Cil.OpCode Ceq;
        public static readonly Mono.Cecil.Cil.OpCode Cgt;
        public static readonly Mono.Cecil.Cil.OpCode Cgt_Un;
        public static readonly Mono.Cecil.Cil.OpCode Ckfinite;
        public static readonly Mono.Cecil.Cil.OpCode Clt;
        public static readonly Mono.Cecil.Cil.OpCode Clt_Un;
        public static readonly Mono.Cecil.Cil.OpCode Constrained;
        public static readonly Mono.Cecil.Cil.OpCode Conv_I;
        public static readonly Mono.Cecil.Cil.OpCode Conv_I1;
        public static readonly Mono.Cecil.Cil.OpCode Conv_I2;
        public static readonly Mono.Cecil.Cil.OpCode Conv_I4;
        public static readonly Mono.Cecil.Cil.OpCode Conv_I8;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_I;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_I1;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_I1_Un;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_I2;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_I2_Un;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_I4;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_I4_Un;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_I8;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_I8_Un;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_I_Un;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_U;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_U1;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_U1_Un;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_U2;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_U2_Un;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_U4;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_U4_Un;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_U8;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_U8_Un;
        public static readonly Mono.Cecil.Cil.OpCode Conv_Ovf_U_Un;
        public static readonly Mono.Cecil.Cil.OpCode Conv_R4;
        public static readonly Mono.Cecil.Cil.OpCode Conv_R8;
        public static readonly Mono.Cecil.Cil.OpCode Conv_R_Un;
        public static readonly Mono.Cecil.Cil.OpCode Conv_U;
        public static readonly Mono.Cecil.Cil.OpCode Conv_U1;
        public static readonly Mono.Cecil.Cil.OpCode Conv_U2;
        public static readonly Mono.Cecil.Cil.OpCode Conv_U4;
        public static readonly Mono.Cecil.Cil.OpCode Conv_U8;
        public static readonly Mono.Cecil.Cil.OpCode Cpblk;
        public static readonly Mono.Cecil.Cil.OpCode Cpobj;
        public static readonly Mono.Cecil.Cil.OpCode Div;
        public static readonly Mono.Cecil.Cil.OpCode Div_Un;
        public static readonly Mono.Cecil.Cil.OpCode Dup;
        public static readonly Mono.Cecil.Cil.OpCode Endfilter;
        public static readonly Mono.Cecil.Cil.OpCode Endfinally;
        public static readonly Mono.Cecil.Cil.OpCode Initblk;
        public static readonly Mono.Cecil.Cil.OpCode Initobj;
        public static readonly Mono.Cecil.Cil.OpCode Isinst;
        public static readonly Mono.Cecil.Cil.OpCode Jmp;
        public static readonly Mono.Cecil.Cil.OpCode Ldarg;
        public static readonly Mono.Cecil.Cil.OpCode Ldarga;
        public static readonly Mono.Cecil.Cil.OpCode Ldarga_S;
        public static readonly Mono.Cecil.Cil.OpCode Ldarg_0;
        public static readonly Mono.Cecil.Cil.OpCode Ldarg_1;
        public static readonly Mono.Cecil.Cil.OpCode Ldarg_2;
        public static readonly Mono.Cecil.Cil.OpCode Ldarg_3;
        public static readonly Mono.Cecil.Cil.OpCode Ldarg_S;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I4;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I4_0;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I4_1;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I4_2;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I4_3;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I4_4;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I4_5;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I4_6;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I4_7;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I4_8;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I4_M1;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I4_S;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_I8;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_R4;
        public static readonly Mono.Cecil.Cil.OpCode Ldc_R8;
        public static readonly Mono.Cecil.Cil.OpCode Ldelema;
        public static readonly Mono.Cecil.Cil.OpCode Ldelem_Any;
        public static readonly Mono.Cecil.Cil.OpCode Ldelem_I;
        public static readonly Mono.Cecil.Cil.OpCode Ldelem_I1;
        public static readonly Mono.Cecil.Cil.OpCode Ldelem_I2;
        public static readonly Mono.Cecil.Cil.OpCode Ldelem_I4;
        public static readonly Mono.Cecil.Cil.OpCode Ldelem_I8;
        public static readonly Mono.Cecil.Cil.OpCode Ldelem_R4;
        public static readonly Mono.Cecil.Cil.OpCode Ldelem_R8;
        public static readonly Mono.Cecil.Cil.OpCode Ldelem_Ref;
        public static readonly Mono.Cecil.Cil.OpCode Ldelem_U1;
        public static readonly Mono.Cecil.Cil.OpCode Ldelem_U2;
        public static readonly Mono.Cecil.Cil.OpCode Ldelem_U4;
        public static readonly Mono.Cecil.Cil.OpCode Ldfld;
        public static readonly Mono.Cecil.Cil.OpCode Ldflda;
        public static readonly Mono.Cecil.Cil.OpCode Ldftn;
        public static readonly Mono.Cecil.Cil.OpCode Ldind_I;
        public static readonly Mono.Cecil.Cil.OpCode Ldind_I1;
        public static readonly Mono.Cecil.Cil.OpCode Ldind_I2;
        public static readonly Mono.Cecil.Cil.OpCode Ldind_I4;
        public static readonly Mono.Cecil.Cil.OpCode Ldind_I8;
        public static readonly Mono.Cecil.Cil.OpCode Ldind_R4;
        public static readonly Mono.Cecil.Cil.OpCode Ldind_R8;
        public static readonly Mono.Cecil.Cil.OpCode Ldind_Ref;
        public static readonly Mono.Cecil.Cil.OpCode Ldind_U1;
        public static readonly Mono.Cecil.Cil.OpCode Ldind_U2;
        public static readonly Mono.Cecil.Cil.OpCode Ldind_U4;
        public static readonly Mono.Cecil.Cil.OpCode Ldlen;
        public static readonly Mono.Cecil.Cil.OpCode Ldloc;
        public static readonly Mono.Cecil.Cil.OpCode Ldloca;
        public static readonly Mono.Cecil.Cil.OpCode Ldloca_S;
        public static readonly Mono.Cecil.Cil.OpCode Ldloc_0;
        public static readonly Mono.Cecil.Cil.OpCode Ldloc_1;
        public static readonly Mono.Cecil.Cil.OpCode Ldloc_2;
        public static readonly Mono.Cecil.Cil.OpCode Ldloc_3;
        public static readonly Mono.Cecil.Cil.OpCode Ldloc_S;
        public static readonly Mono.Cecil.Cil.OpCode Ldnull;
        public static readonly Mono.Cecil.Cil.OpCode Ldobj;
        public static readonly Mono.Cecil.Cil.OpCode Ldsfld;
        public static readonly Mono.Cecil.Cil.OpCode Ldsflda;
        public static readonly Mono.Cecil.Cil.OpCode Ldstr;
        public static readonly Mono.Cecil.Cil.OpCode Ldtoken;
        public static readonly Mono.Cecil.Cil.OpCode Ldvirtftn;
        public static readonly Mono.Cecil.Cil.OpCode Leave;
        public static readonly Mono.Cecil.Cil.OpCode Leave_S;
        public static readonly Mono.Cecil.Cil.OpCode Localloc;
        public static readonly Mono.Cecil.Cil.OpCode Mkrefany;
        public static readonly Mono.Cecil.Cil.OpCode Mul;
        public static readonly Mono.Cecil.Cil.OpCode Mul_Ovf;
        public static readonly Mono.Cecil.Cil.OpCode Mul_Ovf_Un;
        public static readonly Mono.Cecil.Cil.OpCode Neg;
        public static readonly Mono.Cecil.Cil.OpCode Newarr;
        public static readonly Mono.Cecil.Cil.OpCode Newobj;
        public static readonly Mono.Cecil.Cil.OpCode No;
        public static readonly Mono.Cecil.Cil.OpCode Nop;
        public static readonly Mono.Cecil.Cil.OpCode Not;
        public static readonly Mono.Cecil.Cil.OpCode Or;
        public static readonly Mono.Cecil.Cil.OpCode Pop;
        public static readonly Mono.Cecil.Cil.OpCode Readonly;
        public static readonly Mono.Cecil.Cil.OpCode Refanytype;
        public static readonly Mono.Cecil.Cil.OpCode Refanyval;
        public static readonly Mono.Cecil.Cil.OpCode Rem;
        public static readonly Mono.Cecil.Cil.OpCode Rem_Un;
        public static readonly Mono.Cecil.Cil.OpCode Ret;
        public static readonly Mono.Cecil.Cil.OpCode Rethrow;
        public static readonly Mono.Cecil.Cil.OpCode Shl;
        public static readonly Mono.Cecil.Cil.OpCode Shr;
        public static readonly Mono.Cecil.Cil.OpCode Shr_Un;
        public static readonly Mono.Cecil.Cil.OpCode Sizeof;
        public static readonly Mono.Cecil.Cil.OpCode Starg;
        public static readonly Mono.Cecil.Cil.OpCode Starg_S;
        public static readonly Mono.Cecil.Cil.OpCode Stelem_Any;
        public static readonly Mono.Cecil.Cil.OpCode Stelem_I;
        public static readonly Mono.Cecil.Cil.OpCode Stelem_I1;
        public static readonly Mono.Cecil.Cil.OpCode Stelem_I2;
        public static readonly Mono.Cecil.Cil.OpCode Stelem_I4;
        public static readonly Mono.Cecil.Cil.OpCode Stelem_I8;
        public static readonly Mono.Cecil.Cil.OpCode Stelem_R4;
        public static readonly Mono.Cecil.Cil.OpCode Stelem_R8;
        public static readonly Mono.Cecil.Cil.OpCode Stelem_Ref;
        public static readonly Mono.Cecil.Cil.OpCode Stfld;
        public static readonly Mono.Cecil.Cil.OpCode Stind_I;
        public static readonly Mono.Cecil.Cil.OpCode Stind_I1;
        public static readonly Mono.Cecil.Cil.OpCode Stind_I2;
        public static readonly Mono.Cecil.Cil.OpCode Stind_I4;
        public static readonly Mono.Cecil.Cil.OpCode Stind_I8;
        public static readonly Mono.Cecil.Cil.OpCode Stind_R4;
        public static readonly Mono.Cecil.Cil.OpCode Stind_R8;
        public static readonly Mono.Cecil.Cil.OpCode Stind_Ref;
        public static readonly Mono.Cecil.Cil.OpCode Stloc;
        public static readonly Mono.Cecil.Cil.OpCode Stloc_0;
        public static readonly Mono.Cecil.Cil.OpCode Stloc_1;
        public static readonly Mono.Cecil.Cil.OpCode Stloc_2;
        public static readonly Mono.Cecil.Cil.OpCode Stloc_3;
        public static readonly Mono.Cecil.Cil.OpCode Stloc_S;
        public static readonly Mono.Cecil.Cil.OpCode Stobj;
        public static readonly Mono.Cecil.Cil.OpCode Stsfld;
        public static readonly Mono.Cecil.Cil.OpCode Sub;
        public static readonly Mono.Cecil.Cil.OpCode Sub_Ovf;
        public static readonly Mono.Cecil.Cil.OpCode Sub_Ovf_Un;
        public static readonly Mono.Cecil.Cil.OpCode Switch;
        public static readonly Mono.Cecil.Cil.OpCode Tail;
        public static readonly Mono.Cecil.Cil.OpCode Throw;
        public static readonly Mono.Cecil.Cil.OpCode Unaligned;
        public static readonly Mono.Cecil.Cil.OpCode Unbox;
        public static readonly Mono.Cecil.Cil.OpCode Unbox_Any;
        public static readonly Mono.Cecil.Cil.OpCode Volatile;
        public static readonly Mono.Cecil.Cil.OpCode Xor;
    }
    public enum OpCodeType
    {
        Annotation = 0,
        Macro = 1,
        Nternal = 2,
        Objmodel = 3,
        Prefix = 4,
        Primitive = 5,
    }
    public enum OperandType
    {
        InlineArg = 14,
        InlineBrTarget = 0,
        InlineField = 1,
        InlineI = 2,
        InlineI8 = 3,
        InlineMethod = 4,
        InlineNone = 5,
        InlinePhi = 6,
        InlineR = 7,
        InlineSig = 8,
        InlineString = 9,
        InlineSwitch = 10,
        InlineTok = 11,
        InlineType = 12,
        InlineVar = 13,
        ShortInlineArg = 19,
        ShortInlineBrTarget = 15,
        ShortInlineI = 16,
        ShortInlineR = 17,
        ShortInlineVar = 18,
    }
    public sealed partial class PortablePdbReader : Mono.Cecil.Cil.ISymbolReader, System.IDisposable
    {
        internal PortablePdbReader() { }
        public void Dispose() { }
        public Mono.Cecil.Cil.ISymbolWriterProvider GetWriterProvider() { throw null; }
        public bool ProcessDebugHeader(Mono.Cecil.Cil.ImageDebugHeader header) { throw null; }
        public Mono.Cecil.Cil.MethodDebugInformation Read(Mono.Cecil.MethodDefinition method) { throw null; }
    }
    public sealed partial class PortablePdbReaderProvider : Mono.Cecil.Cil.ISymbolReaderProvider
    {
        public PortablePdbReaderProvider() { }
        public Mono.Cecil.Cil.ISymbolReader GetSymbolReader(Mono.Cecil.ModuleDefinition module, System.IO.Stream symbolStream) { throw null; }
        public Mono.Cecil.Cil.ISymbolReader GetSymbolReader(Mono.Cecil.ModuleDefinition module, string fileName) { throw null; }
    }
    public sealed partial class PortablePdbWriter : Mono.Cecil.Cil.ISymbolWriter, System.IDisposable
    {
        internal PortablePdbWriter() { }
        public void Dispose() { }
        public Mono.Cecil.Cil.ImageDebugHeader GetDebugHeader() { throw null; }
        public Mono.Cecil.Cil.ISymbolReaderProvider GetReaderProvider() { throw null; }
        public void Write(Mono.Cecil.Cil.MethodDebugInformation info) { }
    }
    public sealed partial class PortablePdbWriterProvider : Mono.Cecil.Cil.ISymbolWriterProvider
    {
        public PortablePdbWriterProvider() { }
        public Mono.Cecil.Cil.ISymbolWriter GetSymbolWriter(Mono.Cecil.ModuleDefinition module, System.IO.Stream symbolStream) { throw null; }
        public Mono.Cecil.Cil.ISymbolWriter GetSymbolWriter(Mono.Cecil.ModuleDefinition module, string fileName) { throw null; }
    }
    public sealed partial class ScopeDebugInformation : Mono.Cecil.Cil.DebugInformation
    {
        public ScopeDebugInformation(Mono.Cecil.Cil.Instruction start, Mono.Cecil.Cil.Instruction end) { }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.ConstantDebugInformation> Constants { get { throw null; } }
        public Mono.Cecil.Cil.InstructionOffset End { get { throw null; } set { } }
        public bool HasConstants { get { throw null; } }
        public bool HasScopes { get { throw null; } }
        public bool HasVariables { get { throw null; } }
        public Mono.Cecil.Cil.ImportDebugInformation Import { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.ScopeDebugInformation> Scopes { get { throw null; } }
        public Mono.Cecil.Cil.InstructionOffset Start { get { throw null; } set { } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.VariableDebugInformation> Variables { get { throw null; } }
        public bool TryGetName(Mono.Cecil.Cil.VariableDefinition variable, out string name) { throw null; }
    }
    public sealed partial class SequencePoint
    {
        public SequencePoint(Mono.Cecil.Cil.Instruction instruction, Mono.Cecil.Cil.Document document) { }
        public Mono.Cecil.Cil.Document Document { get { throw null; } set { } }
        public int EndColumn { get { throw null; } set { } }
        public int EndLine { get { throw null; } set { } }
        public bool IsHidden { get { throw null; } }
        public int Offset { get { throw null; } }
        public int StartColumn { get { throw null; } set { } }
        public int StartLine { get { throw null; } set { } }
    }
    public sealed partial class SourceLinkDebugInformation : Mono.Cecil.Cil.CustomDebugInformation
    {
        public static System.Guid KindIdentifier;
        public SourceLinkDebugInformation(string content) { }
        public string Content { get { throw null; } set { } }
        public override Mono.Cecil.Cil.CustomDebugInformationKind Kind { get { throw null; } }
    }
    public enum StackBehaviour
    {
        Pop0 = 0,
        Pop1 = 1,
        Pop1_pop1 = 2,
        PopAll = 18,
        Popi = 3,
        Popi_pop1 = 4,
        Popi_popi = 5,
        Popi_popi8 = 6,
        Popi_popi_popi = 7,
        Popi_popr4 = 8,
        Popi_popr8 = 9,
        Popref = 10,
        Popref_pop1 = 11,
        Popref_popi = 12,
        Popref_popi_popi = 13,
        Popref_popi_popi8 = 14,
        Popref_popi_popr4 = 15,
        Popref_popi_popr8 = 16,
        Popref_popi_popref = 17,
        Push0 = 19,
        Push1 = 20,
        Push1_push1 = 21,
        Pushi = 22,
        Pushi8 = 23,
        Pushr4 = 24,
        Pushr8 = 25,
        Pushref = 26,
        Varpop = 27,
        Varpush = 28,
    }
    public sealed partial class StateMachineScope
    {
        public StateMachineScope(Mono.Cecil.Cil.Instruction start, Mono.Cecil.Cil.Instruction end) { }
        public Mono.Cecil.Cil.InstructionOffset End { get { throw null; } set { } }
        public Mono.Cecil.Cil.InstructionOffset Start { get { throw null; } set { } }
    }
    public sealed partial class StateMachineScopeDebugInformation : Mono.Cecil.Cil.CustomDebugInformation
    {
        public static System.Guid KindIdentifier;
        public StateMachineScopeDebugInformation() { }
        public override Mono.Cecil.Cil.CustomDebugInformationKind Kind { get { throw null; } }
        public Mono.Collections.Generic.Collection<Mono.Cecil.Cil.StateMachineScope> Scopes { get { throw null; } }
    }
    [System.SerializableAttribute]
    public sealed partial class SymbolsNotFoundException : System.IO.FileNotFoundException
    {
        public SymbolsNotFoundException(string message) { }
    }
    [System.SerializableAttribute]
    public sealed partial class SymbolsNotMatchingException : System.InvalidOperationException
    {
        public SymbolsNotMatchingException(string message) { }
    }
    [System.FlagsAttribute]
    public enum VariableAttributes : ushort
    {
        DebuggerHidden = (ushort)1,
        None = (ushort)0,
    }
    public sealed partial class VariableDebugInformation : Mono.Cecil.Cil.DebugInformation
    {
        public VariableDebugInformation(Mono.Cecil.Cil.VariableDefinition variable, string name) { }
        public Mono.Cecil.Cil.VariableAttributes Attributes { get { throw null; } set { } }
        public int Index { get { throw null; } }
        public bool IsDebuggerHidden { get { throw null; } set { } }
        public string Name { get { throw null; } set { } }
    }
    public sealed partial class VariableDefinition : Mono.Cecil.Cil.VariableReference
    {
        public VariableDefinition(Mono.Cecil.TypeReference variableType) { }
        public bool IsPinned { get { throw null; } }
        public override Mono.Cecil.Cil.VariableDefinition Resolve() { throw null; }
    }
    [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
    public partial struct VariableIndex
    {
        private object _dummy;
        private int _dummyPrimitive;
        public VariableIndex(Mono.Cecil.Cil.VariableDefinition variable) { throw null; }
        public VariableIndex(int index) { throw null; }
        public int Index { get { throw null; } }
    }
    public abstract partial class VariableReference
    {
        internal VariableReference() { }
        protected Mono.Cecil.TypeReference variable_type;
        public int Index { get { throw null; } }
        public Mono.Cecil.TypeReference VariableType { get { throw null; } set { } }
        public abstract Mono.Cecil.Cil.VariableDefinition Resolve();
        public override string ToString() { throw null; }
    }
}
namespace Mono.Collections.Generic
{
    public partial class Collection<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.Generic.IList<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
    {
        public Collection() { }
        public Collection(System.Collections.Generic.ICollection<T> items) { }
        public Collection(int capacity) { }
        public int Capacity { get { throw null; } set { } }
        public int Count { get { throw null; } }
        public T this[int index] { get { throw null; } set { } }
        bool System.Collections.Generic.ICollection<T>.IsReadOnly { get { throw null; } }
        int System.Collections.ICollection.Count { get { throw null; } }
        bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
        object System.Collections.ICollection.SyncRoot { get { throw null; } }
        bool System.Collections.IList.IsFixedSize { get { throw null; } }
        bool System.Collections.IList.IsReadOnly { get { throw null; } }
        object System.Collections.IList.this[int index] { get { throw null; } set { } }
        public void Add(T item) { }
        public void Clear() { }
        public bool Contains(T item) { throw null; }
        public void CopyTo(T[] array, int arrayIndex) { }
        public Mono.Collections.Generic.Collection<T>.Enumerator GetEnumerator() { throw null; }
        public int IndexOf(T item) { throw null; }
        public void Insert(int index, T item) { }
        protected virtual void OnAdd(T item, int index) { }
        protected virtual void OnClear() { }
        protected virtual void OnInsert(T item, int index) { }
        protected virtual void OnRemove(T item, int index) { }
        protected virtual void OnSet(T item, int index) { }
        public bool Remove(T item) { throw null; }
        public void RemoveAt(int index) { }
        protected void Resize(int new_size) { }
        System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() { throw null; }
        void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
        int System.Collections.IList.Add(object value) { throw null; }
        void System.Collections.IList.Clear() { }
        bool System.Collections.IList.Contains(object value) { throw null; }
        int System.Collections.IList.IndexOf(object value) { throw null; }
        void System.Collections.IList.Insert(int index, object value) { }
        void System.Collections.IList.Remove(object value) { }
        void System.Collections.IList.RemoveAt(int index) { }
        public T[] ToArray() { throw null; }
        [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
        public partial struct Enumerator : System.Collections.Generic.IEnumerator<T>, System.Collections.IEnumerator, System.IDisposable
        {
            private T current;
            private object _dummy;
            private int _dummyPrimitive;
            public T Current { get { throw null; } }
            object System.Collections.IEnumerator.Current { get { throw null; } }
            public void Dispose() { }
            public bool MoveNext() { throw null; }
            public void Reset() { }
        }
    }
    public sealed partial class ReadOnlyCollection<T> : Mono.Collections.Generic.Collection<T>, System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.ICollection, System.Collections.IEnumerable, System.Collections.IList
    {
        public ReadOnlyCollection(Mono.Collections.Generic.Collection<T> collection) { }
        public ReadOnlyCollection(T[] array) { }
        public static Mono.Collections.Generic.ReadOnlyCollection<T> Empty { get { throw null; } }
        bool System.Collections.Generic.ICollection<T>.IsReadOnly { get { throw null; } }
        bool System.Collections.IList.IsFixedSize { get { throw null; } }
        bool System.Collections.IList.IsReadOnly { get { throw null; } }
        protected override void OnAdd(T item, int index) { }
        protected override void OnClear() { }
        protected override void OnInsert(T item, int index) { }
        protected override void OnRemove(T item, int index) { }
        protected override void OnSet(T item, int index) { }
    }
}