MonoDevelop.Projects.Formats.MSBuild.MSBuildPropertyGroupMerged.GetPropertyValue C# (CSharp) Method

GetPropertyValue() public method

public GetPropertyValue ( string name ) : string
name string
return string
		public string GetPropertyValue(string name)
		{
			MSBuildProperty prop = GetProperty(name);
			return prop != null ? prop.Value : null;
		}