Arc.Infrastructure.Dependencies.Parameters.ConstructorArgument C# (CSharp) Метод

ConstructorArgument() публичный Метод

Adds constructor argument.
public ConstructorArgument ( string name, object value ) : IParameters
name string The name.
value object The value.
Результат IParameters
        public IParameters ConstructorArgument(string name, object value)
        {
            Arguments.Add(name, value);
            return this;
        }