wasSharp

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 33  →  ?path2? @ 34
/Collections/Generic/CircularQueue.cs
@@ -59,6 +59,17 @@
}
}
 
public bool IsEmpty
{
get
{
lock (SyncRoot)
{
return Store.Count.Equals(0);
}
}
}
 
private T GetNext
{
get