MonoDevelop.Projects.Formats.MSBuild.MSBuildItemGroupCollection.AddNewItem C# (CSharp) 메소드

AddNewItem() 공개 메소드

public AddNewItem ( string name, string include ) : MSBuildItem
name string
include string
리턴 MSBuildItem
		public MSBuildItem AddNewItem(string name, string include)
		{
			MSBuildItemGroup grp = FindBestGroupForItem(name);
			return grp.AddNewItem(name, include);
		}