DeleteCategory() 공개 추상적인 메소드

Deletes a Category from the data store specified by the provider.
public abstract DeleteCategory ( Category category ) : void
category Category /// The category to delete. ///
리턴 void
예제 #1
0
 /// <summary>
 /// Deletes the specified Category from the current provider.
 /// </summary>
 public static void DeleteCategory(Category category)
 {
     LoadProviders();
     _provider.DeleteCategory(category);
 }