public static ProjectProperties Create(string category, string propertyName, string value) { var data = new PropertyPageData() { Category = category, PropertyName = propertyName, Value = value, }; return(Create(data)); }
public static ProjectProperties Create(string category, string propertyName, string value) { var data = new PropertyPageData(category, propertyName, value); return(Create(data)); }