Enum DynamicInvocationType
- Namespace
- ICSharpCode.Decompiler.CSharp.Resolver
- Assembly
- ICSharpCode.Decompiler.dll
public enum DynamicInvocationType
Fields
Indexing = 1
The invocation is an indexing ( 'a[b]' ).
Invocation = 0
The invocation is a normal invocation ( 'a(b)' ).
ObjectCreation = 2
The invocation is an object creation ( 'new a(b)' ).