コード例 #1
0
 /// <summary>
 /// Clears the bracketlist.
 /// If the list is null, creates an empty list.
 /// NOTE: This can leave a lot of data hanging loose in the database!
 /// </summary>
 public void ResetBrackets()
 {
     if (null == Brackets)
     {
         Brackets = new List <IBracket>();
     }
     Brackets.Clear();
 }