ValueInjector.ValueMapping.TryGetValue C# (CSharp) Method

TryGetValue() private method

private TryGetValue ( int var_id, Value &value ) : bool
var_id int
value Value
return bool
		internal bool TryGetValue(int var_id, out Value value)
		{
			return mapping.TryGetValue(var_id, out value);
		}
	}