comparison Implab/Parallels/MTQueue.cs @ 98:4c945d94b9ab v2

fix MTQueue syntax error
author cin
date Tue, 04 Nov 2014 09:43:44 +0300
parents b11c7e9d93bc
children
comparison
equal deleted inserted replaced
97:b11c7e9d93bc 98:4c945d94b9ab
94 94
95 public void Reset() { 95 public void Reset() {
96 m_current = null; 96 m_current = null;
97 } 97 }
98 98
99 public object IEnumerator.Current { 99 object IEnumerator.Current {
100 get { 100 get {
101 if (m_current == null) 101 if (m_current == null)
102 throw new InvalidOperationException(); 102 throw new InvalidOperationException();
103 return m_current.value; 103 return m_current.value;
104 } 104 }