Exemplo n.º 1
0
        public static AtomicBooleanValue FromValue(bool value)
        {
            AtomicBooleanValue temp = new AtomicBooleanValue ();
            temp.Value = value;

            return temp;
        }
Exemplo n.º 2
0
        public static AtomicBooleanValue FromValue(bool value)
        {
            AtomicBooleanValue temp = new AtomicBooleanValue();

            temp.Value = value;

            return(temp);
        }
Exemplo n.º 3
0
 public bool Equals(AtomicBooleanValue rhs)
 {
     return this.flag == rhs.flag;
 }
Exemplo n.º 4
0
 public WhenAnyContinuation(Task <T> owner, IList <T> tasks)
 {
     this.owner = owner;
     this.tasks = tasks;
     executed   = new AtomicBooleanValue();
 }
Exemplo n.º 5
0
 public bool Equals(AtomicBooleanValue obj)
 {
     return _flag == obj._flag;
 }
Exemplo n.º 6
0
 public bool Equals(AtomicBooleanValue rhs)
 {
     return(this.flag == rhs.flag);
 }