wasSharp

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 11  →  ?path2? @ 12
/Collections/Generic/CircularQueue.cs
@@ -18,9 +18,9 @@
public class CircularQueue<T>
{
private readonly LinkedList<T> Store = new LinkedList<T>();
private LinkedListNode<T> CurrentNode;
 
private readonly object SyncRoot = new object();
private LinkedListNode<T> CurrentNode;
 
public CircularQueue()
{
/Collections/Utilities/Extensions.cs
@@ -11,7 +11,6 @@
{
public static class Extensions
{
 
/// <summary>
/// Compares two dictionaries for equality.
/// </summary>
/IO.cs
@@ -4,7 +4,6 @@
// rights of fair usage, the disclaimer and warranty conditions. //
///////////////////////////////////////////////////////////////////////////
 
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
/Linq.cs
@@ -7,8 +7,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace wasSharp.Linq
{
@@ -58,4 +56,4 @@
.Where(q => q != null && !q.Equals(default(T)));
}
}
}
}