NStub.CSharp.ObjectGeneration.BuildDataDictionary.TryGetValue C# (CSharp) Method

TryGetValue() public method

Gets the value out of the general data set associated with the specified key.
key is null.
public TryGetValue ( string key, IBuilderData &value ) : bool
key string The key of the value to get.
value IBuilderData When this method returns, contains the value associated with the specified /// key, if the key is found; otherwise, the default value for the type of the /// value parameter. This parameter is passed uninitialized.
return bool
        public bool TryGetValue(string key, out IBuilderData value)
        {
            return this.generalData.TryGetValue(key, out value);
        }

Same methods

BuildDataDictionary::TryGetValue ( string category, string key, IBuilderData &value ) : bool