Microsoft.VisualStudio.Project.NodeProperties.GetProperty C# (CSharp) 메소드

GetProperty() 보호된 메소드

protected GetProperty ( string name, string def ) : string
name string
def string
리턴 string
        protected string GetProperty(string name, string def)
        {
            string a = this.Node.ItemNode.GetMetadata(name);
            return (a == null) ? def : a;
        }