Exemplo n.º 1
0
		private Dictionary<Type, object> Results(GenericItemDictionary result)
		{
			var returnVal = new Dictionary<Type, object>();
			foreach (KeyValuePair<Type, object> executionResult in result)
			{
				returnVal.Add(executionResult.Key, executionResult.Value);
			}
			return returnVal;
		}
Exemplo n.º 2
0
        private Dictionary <Type, object> Results(GenericItemDictionary result)
        {
            var returnVal = new Dictionary <Type, object>();

            foreach (KeyValuePair <Type, object> executionResult in result)
            {
                returnVal.Add(executionResult.Key, executionResult.Value);
            }
            return(returnVal);
        }
Exemplo n.º 3
0
 public ExecutionResult(GenericItemDictionary returnItems)
 {
     _returnItems = returnItems;
 }