forked from loongly/PureScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathICSharpCode.Decompiler.xml
More file actions
executable file
·16390 lines (16139 loc) · 874 KB
/
ICSharpCode.Decompiler.xml
File metadata and controls
executable file
·16390 lines (16139 loc) · 874 KB
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>ICSharpCode.Decompiler</name>
</assembly>
<members>
<member name="T:ICSharpCode.Decompiler.CSharp.LdTokenAnnotation">
<summary>
Currently unused; we'll probably use the LdToken ILInstruction as annotation instead when LdToken
support gets reimplemented.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.AnnotationExtensions.GetSymbol(ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Retrieves the <see cref="T:ICSharpCode.Decompiler.TypeSystem.ISymbol"/> associated with this AstNode, or null if no symbol
is associated with the node.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.AnnotationExtensions.GetResolveResult(ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Retrieves the <see cref="T:ICSharpCode.Decompiler.Semantics.ResolveResult"/> associated with this <see cref="T:ICSharpCode.Decompiler.CSharp.Syntax.AstNode"/>,
or <see cref="F:ICSharpCode.Decompiler.Semantics.ErrorResolveResult.UnknownError"/> if no resolve result is associated with the node.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.AnnotationExtensions.GetILVariable(ICSharpCode.Decompiler.CSharp.Syntax.IdentifierExpression)">
<summary>
Retrieves the <see cref="T:ICSharpCode.Decompiler.IL.ILVariable"/> associated with this <see cref="T:ICSharpCode.Decompiler.CSharp.Syntax.IdentifierExpression"/>,
or <c>null</c> if no variable is associated with this identifier.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.AnnotationExtensions.GetILVariable(ICSharpCode.Decompiler.CSharp.Syntax.VariableInitializer)">
<summary>
Retrieves the <see cref="T:ICSharpCode.Decompiler.IL.ILVariable"/> associated with this <see cref="T:ICSharpCode.Decompiler.CSharp.Syntax.VariableInitializer"/>,
or <c>null</c> if no variable is associated with this initializer.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.AnnotationExtensions.GetILVariable(ICSharpCode.Decompiler.CSharp.Syntax.ForeachStatement)">
<summary>
Retrieves the <see cref="T:ICSharpCode.Decompiler.IL.ILVariable"/> associated with this <see cref="T:ICSharpCode.Decompiler.CSharp.Syntax.ForeachStatement"/>,
or <c>null</c> if no variable is associated with this foreach statement.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.AnnotationExtensions.WithILVariable(ICSharpCode.Decompiler.CSharp.Syntax.VariableInitializer,ICSharpCode.Decompiler.IL.ILVariable)">
<summary>
Adds an <see cref="T:ICSharpCode.Decompiler.IL.ILVariable"/> to this initializer.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.AnnotationExtensions.WithILVariable(ICSharpCode.Decompiler.CSharp.Syntax.ForeachStatement,ICSharpCode.Decompiler.IL.ILVariable)">
<summary>
Adds an <see cref="T:ICSharpCode.Decompiler.IL.ILVariable"/> to this foreach statement.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.AnnotationExtensions.CopyAnnotationsFrom``1(``0,ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Copies all annotations from <paramref name="other"/> to <paramref name="node"/>.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.AnnotationExtensions.CopyInstructionsFrom``1(``0,ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Copies all <see cref="T:ICSharpCode.Decompiler.IL.ILInstruction"/> annotations from <paramref name="other"/>
to <paramref name="node"/>.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.ILVariableResolveResult">
<summary>
Represents a reference to a local variable.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.ForeachAnnotation">
<summary>
Annotates a <see cref="T:ICSharpCode.Decompiler.CSharp.Syntax.ForeachStatement"/> with the instructions for the GetEnumerator, MoveNext
and get_Current calls.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.ImplicitReturnAnnotation">
<summary>
Annotates the top-level block statement of a function
with the implicitly executed return/yield break.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.ImplicitConversionAnnotation">
<summary>
Annotates an expression when an implicit user-defined conversion was omitted.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.QueryGroupClauseAnnotation">
<summary>
Annotates a QueryGroupClause with the ILFunctions of each (implicit lambda) expression.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.QueryJoinClauseAnnotation">
<summary>
Annotates a QueryJoinClause with the ILFunctions of each (implicit lambda) expression.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.UseImplicitlyTypedOutAnnotation">
<summary>
Annotates an out DirectionExpression if the out variable can be declared implicitly typed.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.CallBuilder.BuildCollectionInitializerExpression(ICSharpCode.Decompiler.IL.OpCode,ICSharpCode.Decompiler.TypeSystem.IMethod,ICSharpCode.Decompiler.Semantics.InitializedObjectResolveResult,System.Collections.Generic.IReadOnlyList{ICSharpCode.Decompiler.IL.ILInstruction})">
<summary>
Converts a call to an Add method to a collection initializer expression.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.IProjectFileWriter">
<summary>
An interface for a service that creates and writes a project file structure
for a specific module being decompiled.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.IProjectFileWriter.Write(System.IO.TextWriter,ICSharpCode.Decompiler.CSharp.ProjectDecompiler.IProjectInfoProvider,System.Collections.Generic.IEnumerable{System.ValueTuple{System.String,System.String}},ICSharpCode.Decompiler.Metadata.PEFile)">
<summary>
Writes the content of a new project file for the specified <paramref name="module"/> being decompiled.
</summary>
<param name="target">The target to write to.</param>
<param name="project">The information about the project being created.</param>
<param name="files">A collection of source files to be included into the project, each item is a pair
of the project entry type and the file path.</param>
<param name="module">The module being decompiled.</param>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.IProjectInfoProvider">
<summary>
An interface that provides common information for a project being decompiled to.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.IProjectInfoProvider.AssemblyResolver">
<summary>
Gets the assembly resolver active for the project.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.IProjectInfoProvider.LanguageVersion">
<summary>
Gets the C# language version of the project.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.IProjectInfoProvider.ProjectGuid">
<summary>
Gets the unique ID of the project.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.IProjectInfoProvider.StrongNameKeyFile">
<summary>
Gets the name of the key file being used for strong name signing. Can be null if no file is available.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.ProjectFileWriterSdkStyle">
<summary>
A <see cref="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.IProjectFileWriter"/> implementation that creates the projects in the SDK style format.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.ProjectFileWriterSdkStyle.Create">
<summary>
Creates a new instance of the <see cref="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.ProjectFileWriterSdkStyle"/> class.
</summary>
<returns>A new instance of the <see cref="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.ProjectFileWriterSdkStyle"/> class.</returns>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.ProjectFileWriterSdkStyle.Write(System.IO.TextWriter,ICSharpCode.Decompiler.CSharp.ProjectDecompiler.IProjectInfoProvider,System.Collections.Generic.IEnumerable{System.ValueTuple{System.String,System.String}},ICSharpCode.Decompiler.Metadata.PEFile)">
<inheritdoc />
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.ProjectFileWriterDefault">
<summary>
A <see cref="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.IProjectFileWriter"/> implementation that creates the projects in the default format.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.ProjectFileWriterDefault.Create">
<summary>
Creates a new instance of the <see cref="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.ProjectFileWriterDefault"/> class.
</summary>
<returns>A new instance of the <see cref="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.ProjectFileWriterDefault"/> class.</returns>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.ProjectFileWriterDefault.Write(System.IO.TextWriter,ICSharpCode.Decompiler.CSharp.ProjectDecompiler.IProjectInfoProvider,System.Collections.Generic.IEnumerable{System.ValueTuple{System.String,System.String}},ICSharpCode.Decompiler.Metadata.PEFile)">
<inheritdoc />
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetFramework">
<summary>
A class describing the target framework of a module.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetFramework.#ctor(System.String,System.Int32,System.String)">
<summary>
Initializes a new instance of the <see cref="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetFramework"/> class.
</summary>
<param name="identifier">The framework identifier string. Can be null.</param>
<param name="version">The framework version string. Must be greater than 100 (where 100 corresponds to v1.0).</param>
<param name="profile">The framework profile. Can be null.</param>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetFramework.Identifier">
<summary>
Gets the target framework identifier. Can be null if not defined.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetFramework.Moniker">
<summary>
Gets the target framework moniker. Can be null if not supported.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetFramework.VersionString">
<summary>
Gets the target framework version, e.g. "v4.5".
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetFramework.VersionNumber">
<summary>
Gets the target framework version as integer (multiplied by 100), e.g. 450.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetFramework.Profile">
<summary>
Gets the target framework profile. Can be null if not set or not available.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetFramework.IsPortableClassLibrary">
<summary>
Gets a value indicating whether the target is a portable class library (PCL).
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetServices">
<summary>
Helper services for determining the target framework and platform of a module.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetServices.DetectTargetFramework(ICSharpCode.Decompiler.Metadata.PEFile)">
<summary>
Gets the <see cref="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetFramework"/> for the specified <paramref name="module"/>.
</summary>
<param name="module">The module to get the target framework description for. Cannot be null.</param>
<returns>A new instance of the <see cref="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetFramework"/> class that describes the specified <paramref name="module"/>.
</returns>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.TargetServices.GetPlatformName(ICSharpCode.Decompiler.Metadata.PEFile)">
<summary>
Gets the string representation (name) of the target platform of the specified <paramref name="module"/>.
</summary>
<param name="module">The module to get the target framework description for. Cannot be null.</param>
<returns>The platform name, e.g. "AnyCPU" or "x86".</returns>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.WholeProjectDecompiler">
<summary>
Decompiles an assembly into a visual studio project file.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.WholeProjectDecompiler.Settings">
<summary>
Gets the setting this instance uses for decompiling.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.WholeProjectDecompiler.ProjectGuid">
<summary>
The MSBuild ProjectGuid to use for the new project.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.WholeProjectDecompiler.StrongNameKeyFile">
<summary>
Path to the snk file to use for signing.
<c>null</c> to not sign.
</summary>
</member>
<member name="F:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.WholeProjectDecompiler.targetDirectory">
<summary>
The target directory that the decompiled files are written to.
</summary>
<remarks>
This field is set by DecompileProject() and protected so that overridden protected members
can access it.
</remarks>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.ProjectDecompiler.WholeProjectDecompiler.CleanUpFileName(System.String)">
<summary>
Cleans up a node name for use as a file name.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.OutputVisitor.GenericGrammarAmbiguityVisitor">
<summary>
Used to test for the "F(G<A,B>(7));" grammar ambiguity.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.GenericGrammarAmbiguityVisitor.ResolveAmbiguities(ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Resolves ambiguities in the specified syntax tree.
This method must be called after the InsertParenthesesVisitor, because the ambiguity depends on whether the
final `>` in the possible-type-argument is followed by an opening parenthesis.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpAmbience">
<summary>
C# ambience. Used to convert type system symbols to text (usually for displaying the symbol to the user; e.g. in editor tooltips)
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpOutputVisitor">
<summary>
Outputs the AST.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpOutputVisitor.Comma(ICSharpCode.Decompiler.CSharp.Syntax.AstNode,System.Boolean)">
<summary>
Writes a comma.
</summary>
<param name="nextNode">The next node after the comma.</param>
<param name="noSpaceAfterComma">When set prevents printing a space after comma.</param>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpOutputVisitor.OptionalComma(ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Writes an optional comma, e.g. at the end of an enum declaration or in an array initializer
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpOutputVisitor.OptionalSemicolon(ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Writes an optional semicolon, e.g. at the end of a type or namespace declaration.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpOutputVisitor.WriteKeyword(ICSharpCode.Decompiler.CSharp.Syntax.TokenRole)">
<summary>
Writes a keyword, and all specials up to
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpOutputVisitor.Semicolon">
<summary>
Marks the end of a statement
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpOutputVisitor.Space(System.Boolean)">
<summary>
Writes a space depending on policy.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpOutputVisitor.IsKeyword(System.String,ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Determines whether the specified identifier is a keyword in the given context.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpOutputVisitor.WriteEmbeddedStatement(ICSharpCode.Decompiler.CSharp.Syntax.Statement,ICSharpCode.Decompiler.CSharp.OutputVisitor.NewLinePlacement)">
<summary>
Writes an embedded statement.
</summary>
<param name="embeddedStatement">The statement to write.</param>
<param name="nlp">Determines whether a trailing newline should be written following a block.
Non-blocks always write a trailing newline.</param>
<remarks>
Blocks may or may not write a leading newline depending on StatementBraceStyle.
Non-blocks always write a leading newline.
</remarks>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpOutputVisitor.WriteBlock(ICSharpCode.Decompiler.CSharp.Syntax.BlockStatement,ICSharpCode.Decompiler.CSharp.OutputVisitor.BraceStyle)">
<summary>
Writes a block statement.
Similar to VisitBlockStatement() except that:
1) it allows customizing the BraceStyle
2) it does not write a trailing newline after the '}' (this job is left to the caller)
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpOutputVisitor.ConvertString(System.String)">
<summary>
Converts special characters to escape sequences within the given string.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.OutputVisitor.FormattingOptionsFactory">
<summary>
The formatting options factory creates pre defined formatting option styles.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.FormattingOptionsFactory.CreateEmpty">
<summary>
Creates empty CSharpFormatting options.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.FormattingOptionsFactory.CreateMono">
<summary>
Creates mono indent style CSharpFormatting options.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.FormattingOptionsFactory.CreateSharpDevelop">
<summary>
Creates sharp develop indent style CSharpFormatting options.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.FormattingOptionsFactory.CreateKRStyle">
<summary>
The K&R style, so named because it was used in Kernighan and Ritchie's book The C Programming Language,
is commonly used in C. It is less common for C++, C#, and others.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.FormattingOptionsFactory.CreateAllman">
<summary>
Creates allman indent style CSharpFormatting options used in Visual Studio.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.FormattingOptionsFactory.CreateWhitesmiths">
<summary>
The Whitesmiths style, also called Wishart style to a lesser extent, is less common today than the previous three. It was originally used in the documentation for the first commercial C compiler, the Whitesmiths Compiler.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.FormattingOptionsFactory.CreateGNU">
<summary>
Like the Allman and Whitesmiths styles, GNU style puts braces on a line by themselves, indented by 2 spaces,
except when opening a function definition, where they are not indented.
In either case, the contained code is indented by 2 spaces from the braces.
Popularised by Richard Stallman, the layout may be influenced by his background of writing Lisp code.
In Lisp the equivalent to a block (a progn)
is a first class data entity and giving it its own indent level helps to emphasize that,
whereas in C a block is just syntax.
Although not directly related to indentation, GNU coding style also includes a space before the bracketed
list of arguments to a function.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.OutputVisitor.InsertParenthesesVisitor">
<summary>
Inserts the parentheses into the AST that are needed to ensure the AST can be printed correctly.
For example, if the AST contains
BinaryOperatorExpresson(2, Mul, BinaryOperatorExpression(1, Add, 1))); printing that AST
would incorrectly result in "2 * 1 + 1". By running InsertParenthesesVisitor, the necessary
parentheses are inserted: "2 * (1 + 1)".
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.OutputVisitor.InsertParenthesesVisitor.InsertParenthesesForReadability">
<summary>
Gets/Sets whether the visitor should insert parentheses to make the code better looking.
If this property is false, it will insert parentheses only where strictly required by the language spec.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.InsertParenthesesVisitor.GetPrecedence(ICSharpCode.Decompiler.CSharp.Syntax.Expression)">
<summary>
Gets the row number in the C# 4.0 spec operator precedence table.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.InsertParenthesesVisitor.ParenthesizeIfRequired(ICSharpCode.Decompiler.CSharp.Syntax.Expression,ICSharpCode.Decompiler.CSharp.OutputVisitor.InsertParenthesesVisitor.PrecedenceLevel)">
<summary>
Parenthesizes the expression if it does not have the minimum required precedence.
</summary>
</member>
<member name="F:ICSharpCode.Decompiler.CSharp.OutputVisitor.InsertRequiredSpacesDecorator.lastWritten">
<summary>
Used to insert the minimal amount of spaces so that the lexer recognizes the tokens that were written.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.InsertSpecialsDecorator.WriteSpecials(ICSharpCode.Decompiler.CSharp.Syntax.AstNode,ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Writes all specials from start to end (exclusive). Does not touch the positionStack.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.InsertSpecialsDecorator.WriteSpecialsUpToRole(ICSharpCode.Decompiler.CSharp.Syntax.Role)">
<summary>
Writes all specials between the current position (in the positionStack) and the next
node with the specified role. Advances the current position.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.InsertSpecialsDecorator.WriteSpecialsUpToNode(ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Writes all specials between the current position (in the positionStack) and the specified node.
Advances the current position.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.TokenWriter.WriteIdentifier(ICSharpCode.Decompiler.CSharp.Syntax.Identifier)">
<summary>
Writes an identifier.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.TokenWriter.WriteKeyword(ICSharpCode.Decompiler.CSharp.Syntax.Role,System.String)">
<summary>
Writes a keyword to the output.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.TokenWriter.WriteToken(ICSharpCode.Decompiler.CSharp.Syntax.Role,System.String)">
<summary>
Writes a token to the output.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.TokenWriter.WritePrimitiveValue(System.Object,ICSharpCode.Decompiler.CSharp.Syntax.LiteralFormat)">
<summary>
Writes a primitive/literal value
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.TokenWriter.WriteInterpolatedText(System.String)">
<summary>
Write a piece of text in an interpolated string literal.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.OutputVisitor.TextWriterTokenWriter">
<summary>
Writes C# code into a TextWriter.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.TextWriterTokenWriter.ConvertCharLiteral(System.Char)">
<summary>
Gets the escape sequence for the specified character within a char literal.
Does not include the single quotes surrounding the char literal.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.TextWriterTokenWriter.ConvertChar(System.Char)">
<summary>
Gets the escape sequence for the specified character.
</summary>
<remarks>This method does not convert ' or ".</remarks>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.OutputVisitor.TextWriterTokenWriter.ConvertString(System.String)">
<summary>
Converts special characters to escape sequences within the given string.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.SequencePointBuilder">
<summary>
Given a SyntaxTree that was output from the decompiler, constructs the list of sequence points.
</summary>
</member>
<member name="F:ICSharpCode.Decompiler.CSharp.SequencePointBuilder.StatePerSequencePoint.PrimaryNode">
<summary>
Main AST node associated with this sequence point.
</summary>
</member>
<member name="F:ICSharpCode.Decompiler.CSharp.SequencePointBuilder.StatePerSequencePoint.Intervals">
<summary>
List of IL intervals that are associated with this sequence point.
</summary>
</member>
<member name="F:ICSharpCode.Decompiler.CSharp.SequencePointBuilder.StatePerSequencePoint.Function">
<summary>
The function containing this sequence point.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.SequencePointBuilder.StartSequencePoint(ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Start a new C# statement = new sequence point.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.SequencePointBuilder.AddToSequencePoint(ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Add the ILAst instruction associated with the AstNode to the sequence point.
Also add all its ILAst sub-instructions (unless they were already added to another sequence point).
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.SequencePointBuilder.GetSequencePoints">
<summary>
Called after the visitor is done to return the results.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.DeclarationExpression">
<summary>
TypeName VariableDesignation
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.SwitchExpression">
<summary>
Expression switch { SwitchSections }
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.SwitchExpressionSection">
<summary>
Pattern => Expression
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.SingleVariableDesignation">
<summary>
Identifier
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.ParenthesizedVariableDesignation">
<summary>
( VariableDesignation (, VariableDesignation)* )
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.Ancestors">
<summary>
Gets the ancestors of this node (excluding this node itself)
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.AncestorsAndSelf">
<summary>
Gets the ancestors of this node (including this node itself)
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.Descendants">
<summary>
Gets all descendants of this node (excluding this node itself) in pre-order.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.DescendantsAndSelf">
<summary>
Gets all descendants of this node (including this node itself) in pre-order.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetChildByRole``1(ICSharpCode.Decompiler.CSharp.Syntax.Role{``0})">
<summary>
Gets the first child with the specified role.
Returns the role's null object if the child is not found.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.AddChildUnsafe(ICSharpCode.Decompiler.CSharp.Syntax.AstNode,ICSharpCode.Decompiler.CSharp.Syntax.Role)">
<summary>
Adds a child without performing any safety checks.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.Remove">
<summary>
Removes this node from its parent.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.ReplaceWith(ICSharpCode.Decompiler.CSharp.Syntax.AstNode)">
<summary>
Replaces this node with the new node.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.Clone">
<summary>
Clones the whole subtree starting at this AST node.
</summary>
<remarks>Annotations are copied over to the new nodes; and any annotations implementing ICloneable will be cloned.</remarks>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetNextNode(System.Func{ICSharpCode.Decompiler.CSharp.Syntax.AstNode,System.Boolean})">
<summary>
Gets the next node which fullfills a given predicate
</summary>
<returns>The next node.</returns>
<param name="pred">The predicate.</param>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetPrevNode(System.Func{ICSharpCode.Decompiler.CSharp.Syntax.AstNode,System.Boolean})">
<summary>
Gets the previous node which fullfills a given predicate
</summary>
<returns>The next node.</returns>
<param name="pred">The predicate.</param>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetNextSibling(System.Func{ICSharpCode.Decompiler.CSharp.Syntax.AstNode,System.Boolean})">
<summary>
Gets the next sibling which fullfills a given predicate
</summary>
<returns>The next node.</returns>
<param name="pred">The predicate.</param>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetPrevSibling(System.Func{ICSharpCode.Decompiler.CSharp.Syntax.AstNode,System.Boolean})">
<summary>
Gets the next sibling which fullfills a given predicate
</summary>
<returns>The next node.</returns>
<param name="pred">The predicate.</param>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetNodeAt(System.Int32,System.Int32,System.Predicate{ICSharpCode.Decompiler.CSharp.Syntax.AstNode})">
<summary>
Gets the node specified by T at the location line, column. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End exclusive)
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetNodeAt(ICSharpCode.Decompiler.CSharp.Syntax.TextLocation,System.Predicate{ICSharpCode.Decompiler.CSharp.Syntax.AstNode})">
<summary>
Gets the node specified by pred at location. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End exclusive)
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetNodeAt``1(System.Int32,System.Int32)">
<summary>
Gets the node specified by T at the location line, column. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End exclusive)
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetNodeAt``1(ICSharpCode.Decompiler.CSharp.Syntax.TextLocation)">
<summary>
Gets the node specified by T at location. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End exclusive)
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetAdjacentNodeAt(System.Int32,System.Int32,System.Predicate{ICSharpCode.Decompiler.CSharp.Syntax.AstNode})">
<summary>
Gets the node specified by pred at the location line, column. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End inclusive)
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetAdjacentNodeAt(ICSharpCode.Decompiler.CSharp.Syntax.TextLocation,System.Predicate{ICSharpCode.Decompiler.CSharp.Syntax.AstNode})">
<summary>
Gets the node specified by pred at location. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End inclusive)
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetAdjacentNodeAt``1(System.Int32,System.Int32)">
<summary>
Gets the node specified by T at the location line, column. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End inclusive)
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetAdjacentNodeAt``1(ICSharpCode.Decompiler.CSharp.Syntax.TextLocation)">
<summary>
Gets the node specified by T at location. This is useful for getting a specific node from the tree. For example searching
the current method declaration.
(End inclusive)
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetNodeContaining(ICSharpCode.Decompiler.CSharp.Syntax.TextLocation,ICSharpCode.Decompiler.CSharp.Syntax.TextLocation)">
<summary>
Gets the node that fully contains the range from startLocation to endLocation.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetNodesBetween(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Returns the root nodes of all subtrees that are fully contained in the specified region.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.GetNodesBetween(ICSharpCode.Decompiler.CSharp.Syntax.TextLocation,ICSharpCode.Decompiler.CSharp.Syntax.TextLocation)">
<summary>
Returns the root nodes of all subtrees that are fully contained between <paramref name="start"/> and <paramref name="end"/> (inclusive).
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.ToString(ICSharpCode.Decompiler.CSharp.OutputVisitor.CSharpFormattingOptions)">
<summary>
Gets the node as formatted C# output.
</summary>
<param name='formattingOptions'>
Formatting options.
</param>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.Contains(System.Int32,System.Int32)">
<summary>
Returns true, if the given coordinates (line, column) are in the node.
</summary>
<returns>
True, if the given coordinates are between StartLocation and EndLocation (exclusive); otherwise, false.
</returns>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.Contains(ICSharpCode.Decompiler.CSharp.Syntax.TextLocation)">
<summary>
Returns true, if the given coordinates are in the node.
</summary>
<returns>
True, if location is between StartLocation and EndLocation (exclusive); otherwise, false.
</returns>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.IsInside(System.Int32,System.Int32)">
<summary>
Returns true, if the given coordinates (line, column) are in the node.
</summary>
<returns>
True, if the given coordinates are between StartLocation and EndLocation (inclusive); otherwise, false.
</returns>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNode.IsInside(ICSharpCode.Decompiler.CSharp.Syntax.TextLocation)">
<summary>
Returns true, if the given coordinates are in the node.
</summary>
<returns>
True, if location is between StartLocation and EndLocation (inclusive); otherwise, false.
</returns>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.AstNodeCollection`1">
<summary>
Represents the children of an AstNode that have a specific role.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNodeCollection`1.FirstOrNullObject(System.Func{`0,System.Boolean})">
<summary>
Returns the first element for which the predicate returns true,
or the null node (AstNode with IsNull=true) if no such object is found.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNodeCollection`1.LastOrNullObject(System.Func{`0,System.Boolean})">
<summary>
Returns the last element for which the predicate returns true,
or the null node (AstNode with IsNull=true) if no such object is found.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstNodeCollection`1.AcceptVisitor(ICSharpCode.Decompiler.CSharp.Syntax.IAstVisitor)">
<summary>
Applies the <paramref name="visitor"/> to all nodes in this collection.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.AstType">
<summary>
A type reference in the C# AST.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstType.IsVar">
<summary>
Gets whether this type is a SimpleType "var".
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstType.ToTypeReference(ICSharpCode.Decompiler.TypeSystem.InterningProvider)">
<summary>
Create an ITypeReference for this AstType.
Uses the context (ancestors of this node) to determine the correct <see cref="T:ICSharpCode.Decompiler.CSharp.Resolver.NameLookupMode"/>.
</summary>
<remarks>
The resulting type reference will read the context information from the
<see cref="T:ICSharpCode.Decompiler.TypeSystem.ITypeResolveContext"/>:
For resolving type parameters, the CurrentTypeDefinition/CurrentMember is used.
For resolving simple names, the current namespace and usings from the CurrentUsingScope
(on CSharpTypeResolveContext only) is used.
</remarks>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstType.ToTypeReference(ICSharpCode.Decompiler.CSharp.Resolver.NameLookupMode,ICSharpCode.Decompiler.TypeSystem.InterningProvider)">
<summary>
Create an ITypeReference for this AstType.
</summary>
<remarks>
The resulting type reference will read the context information from the
<see cref="T:ICSharpCode.Decompiler.TypeSystem.ITypeResolveContext"/>:
For resolving type parameters, the CurrentTypeDefinition/CurrentMember is used.
For resolving simple names, the current namespace and usings from the CurrentUsingScope
(on CSharpTypeResolveContext only) is used.
</remarks>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstType.GetNameLookupMode">
<summary>
Gets the name lookup mode from the context (looking at the ancestors of this <see cref="T:ICSharpCode.Decompiler.CSharp.Syntax.AstType"/>).
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstType.MakePointerType">
<summary>
Creates a pointer type from this type by nesting it in a <see cref="T:ICSharpCode.Decompiler.CSharp.Syntax.ComposedType"/>.
If this type already is a pointer type, this method just increases the PointerRank of the existing pointer type.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstType.MakeArrayType(System.Int32)">
<summary>
Creates an array type from this type by nesting it in a <see cref="T:ICSharpCode.Decompiler.CSharp.Syntax.ComposedType"/>.
If this type already is an array type, the additional rank is prepended to the existing array specifier list.
Thus, <c>new SimpleType("T").MakeArrayType(1).MakeArrayType(2)</c> will result in "T[,][]".
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstType.MakeNullableType">
<summary>
Creates a nullable type from this type by nesting it in a <see cref="T:ICSharpCode.Decompiler.CSharp.Syntax.ComposedType"/>.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstType.MakeRefType">
<summary>
Creates a C# 7 ref type from this type by nesting it in a <see cref="T:ICSharpCode.Decompiler.CSharp.Syntax.ComposedType"/>.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstType.MemberType(System.String,ICSharpCode.Decompiler.CSharp.Syntax.AstType[])">
<summary>
Builds an expression that can be used to access a static member on this type.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstType.MemberType(System.String,System.Collections.Generic.IEnumerable{ICSharpCode.Decompiler.CSharp.Syntax.AstType})">
<summary>
Builds an expression that can be used to access a static member on this type.
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.AstType.Create(System.String)">
<summary>
Creates a simple AstType from a dotted name.
Does not support generics, arrays, etc. - just simple dotted names,
e.g. namespace names.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.ComposedType.HasRefSpecifier">
<summary>
Gets/sets whether this type has a 'ref' specifier.
This is used for C# 7 ref locals/ref return.
Parameters use ParameterDeclaration.ParameterModifier instead.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.ComposedType.HasReadOnlySpecifier">
<summary>
Gets/sets whether this type has a 'readonly' specifier.
This is used for C# 7.2 'ref readonly' locals/ref return.
Parameters use ParameterDeclaration.ParameterModifier instead.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.ArraySpecifier">
<summary>
[,,,]
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.CSharpTokenNode">
<summary>
Represents a token in C#. Note that the type of the token is defined through the TokenRole.
</summary>
<remarks>
In all non null c# token nodes the Role of a CSharpToken must be a TokenRole.
</remarks>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.CSharpUtil.InvertCondition(ICSharpCode.Decompiler.CSharp.Syntax.Expression)">
<summary>
Inverts a boolean condition. Note: The condition object can be frozen (from AST) it's cloned internally.
</summary>
<param name="condition">The condition to invert.</param>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.CSharpUtil.AddParensForUnaryExpressionIfRequired(ICSharpCode.Decompiler.CSharp.Syntax.Expression)">
<summary>
When negating an expression this is required, otherwise you would end up with
a or b -> !a or b
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.CSharpUtil.NegateRelationalOperator(ICSharpCode.Decompiler.CSharp.Syntax.BinaryOperatorType)">
<summary>
Get negation of the specified relational operator
</summary>
<returns>
negation of the specified relational operator, or BinaryOperatorType.Any if it's not a relational operator
</returns>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.CSharpUtil.IsRelationalOperator(ICSharpCode.Decompiler.CSharp.Syntax.BinaryOperatorType)">
<summary>
Returns true, if the specified operator is a relational operator
</summary>
</member>
<member name="M:ICSharpCode.Decompiler.CSharp.Syntax.CSharpUtil.NegateConditionOperator(ICSharpCode.Decompiler.CSharp.Syntax.BinaryOperatorType)">
<summary>
Get negation of the condition operator
</summary>
<returns>
negation of the specified condition operator, or BinaryOperatorType.Any if it's not a condition operator
</returns>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.DepthFirstAstVisitor">
<summary>
AST visitor with a default implementation that visits all node depth-first.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.DepthFirstAstVisitor`1">
<summary>
AST visitor with a default implementation that visits all node depth-first.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.DepthFirstAstVisitor`2">
<summary>
AST visitor with a default implementation that visits all node depth-first.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.DocumentationReference">
<summary>
Represents a 'cref' reference in XML documentation.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.DocumentationReference.SymbolKind">
<summary>
Gets/Sets the entity type.
Possible values are:
<c>SymbolKind.Operator</c> for operators,
<c>SymbolKind.Indexer</c> for indexers,
<c>SymbolKind.TypeDefinition</c> for references to primitive types,
and <c>SymbolKind.None</c> for everything else.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.DocumentationReference.OperatorType">
<summary>
Gets/Sets the operator type.
This property is only used when SymbolKind==Operator.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.DocumentationReference.HasParameterList">
<summary>
Gets/Sets whether a parameter list was provided.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.DocumentationReference.DeclaringType">
<summary>
Gets/Sets the declaring type.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.DocumentationReference.MemberName">
<summary>
Gets/sets the member name.
This property is only used when SymbolKind==None.
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.DocumentationReference.ConversionOperatorReturnType">
<summary>
Gets/Sets the return type of conversion operators.
This property is only used when SymbolKind==Operator and OperatorType is explicit or implicit.
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.AnonymousMethodExpression">
<summary>
[async] delegate(Parameters) {Body}
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.AnonymousTypeCreateExpression">
<summary>
new { [ExpressionList] }
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.ArrayCreateExpression">
<summary>
new Type[Dimensions]
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.ArrayCreateExpression.AdditionalArraySpecifiers">
<summary>
Gets additional array ranks (those without size info).
Empty for "new int[5,1]"; will contain a single element for "new int[5][]".
</summary>
</member>
<member name="T:ICSharpCode.Decompiler.CSharp.Syntax.ArrayInitializerExpression">
<summary>
{ Elements }
</summary>
</member>
<member name="P:ICSharpCode.Decompiler.CSharp.Syntax.ArrayInitializerExpression.IsSingleElement">
<summary>
For ease of use purposes in the resolver the ast representation
of { a, b, c } is { {a}, {b}, {c} }.
If IsSingleElement is true then this array initializer expression is a generated one.
That has no meaning in the source code (and contains no brace tokens).
</summary>
</member>