Axiom.Core.MeterManager.OptionValue C# (CSharp) Method

OptionValue() protected method

protected OptionValue ( string name, string>.Dictionary options ) : string
name string
options string>.Dictionary
return string
		protected string OptionValue( string name, Dictionary<string, string> options )
		{
			string value;
			if ( options.TryGetValue( name, out value ) )
				return value;
			else
				return "";
		}