Microsoft.VisualStudio.Project.ProjectNode.GetWizardCustomParams C# (CSharp) 메소드

GetWizardCustomParams() 개인적인 메소드

private GetWizardCustomParams ( HierarchyNode parent, string itemName ) : Array
parent HierarchyNode
itemName string
리턴 Array
        private Array GetWizardCustomParams(HierarchyNode parent, string itemName)
        {
            var customParams = new Dictionary<string, string>();

            AddWizardCustomParams(parent, itemName, customParams);

            return customParams.Select(pair => string.Format("${0}$={1}", pair.Key, pair.Value)).Cast<object>().ToArray();
        }
ProjectNode