AddDefineSymbol() private method

private AddDefineSymbol ( string symbol ) : void
symbol string
return void
Example #1
0
		void DefineSymbols (ConfigurationParameters pars, XmlElement projectOptions, string attributeName)
		{
			if (projectOptions != null) {
				string symbols = projectOptions.GetAttribute (attributeName);
				if (!String.IsNullOrEmpty (symbols)) {
					pars.AddDefineSymbol (symbols);
				}
			}
		}