IObjectCreationOperation.Arguments Property

Definition

Arguments of the object creation, excluding the instance argument. Arguments are in evaluation order.

public:
 property System::Collections::Immutable::ImmutableArray<Microsoft::CodeAnalysis::Operations::IArgumentOperation ^> Arguments { System::Collections::Immutable::ImmutableArray<Microsoft::CodeAnalysis::Operations::IArgumentOperation ^> get(); };
public System.Collections.Immutable.ImmutableArray<Microsoft.CodeAnalysis.Operations.IArgumentOperation> Arguments { get; }
member this.Arguments : System.Collections.Immutable.ImmutableArray<Microsoft.CodeAnalysis.Operations.IArgumentOperation>
Public ReadOnly Property Arguments As ImmutableArray(Of IArgumentOperation)

Property Value

Remarks

If the invocation is in its expanded form, then params/ParamArray arguments would be collected into arrays. Default values are supplied for optional arguments missing in source.

Applies to