Exemple #1
0
 public virtual bool Contains(DebugExecEntry entry)
 {
     if (this.List.Contains(entry))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Exemple #2
0
 public virtual void Remove(DebugExecEntry entry)
 {
     this.List.Remove(entry);
 }
Exemple #3
0
 public virtual void Add(DebugExecEntry entry)
 {
     this.List.Add(entry);
 }
Exemple #4
0
 public virtual void Remove(DebugExecEntry entry)
 {
     this.List.Remove(entry);
 }
Exemple #5
0
 public virtual bool Contains(DebugExecEntry entry)
 {
     if (this.List.Contains(entry))
         return true;
     else
         return false;
 }
Exemple #6
0
 public virtual void Add(DebugExecEntry entry)
 {
     this.List.Add(entry);
 }