ShaderTools.Hlsl.Binding.BoundNodes.BoundNumericConstructorInvocationExpression.BoundNumericConstructorInvocationExpression C# (CSharp) Method

BoundNumericConstructorInvocationExpression() public method

public BoundNumericConstructorInvocationExpression ( NumericConstructorInvocationExpressionSyntax syntax, TypeSymbol type, ImmutableArray arguments, OverloadResolutionResult result ) : System.Collections.Immutable
syntax NumericConstructorInvocationExpressionSyntax
type ShaderTools.Hlsl.Symbols.TypeSymbol
arguments ImmutableArray
result OverloadResolutionResult
return System.Collections.Immutable
        public BoundNumericConstructorInvocationExpression(NumericConstructorInvocationExpressionSyntax syntax, TypeSymbol type, ImmutableArray<BoundExpression> arguments, OverloadResolutionResult<FunctionSymbolSignature> result)
            : base(BoundNodeKind.NumericConstructorInvocationExpression)
        {
            Syntax = syntax;
            Type = type;
            Arguments = arguments;
            Result = result;
        }
BoundNumericConstructorInvocationExpression