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

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

Gets the arguments as IDictionary.
public GetArguments ( ) : IDictionary
Результат IDictionary
        public IDictionary GetArguments()
        {
            var arguments = new Hashtable();
            foreach (var argument in Arguments)
            {
                arguments.Add(argument.Key, argument.Value);
            }
            return arguments;
        }