예제 #1
0
 public void MakeHigherThan(Priority priority)
 {
     _priority = priority.Value - 1;
 }
예제 #2
0
 public int CompareTo(Priority other)
 {
     return(_priority.CompareTo(other.Value));
 }
예제 #3
0
 public void MakeLowerThan(Priority priority)
 {
     _priority = priority.Value + 1;
 }