Example #1
0
 /// <summary> Returns the number of storystages connected after this one </summary>
 /// <remarks> Recursive </remarks>
 public ushort CountChildren()
 {
     if (after == null)
     {
         return(0);
     }
     return((ushort)(after.CountChildren() + 1));
 }