X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=Novacoin%2FWrappedList.cs;h=89c5cce94b3c38717f84222d6120e1d3ab814ffe;hb=ed406332056a475608c5c2b25725e61dd0194231;hp=28a79a0f07d23c38317bf0060be4483912967511;hpb=9f4f9d3f60f89dcf29fb7b24d60ffd40d7360a7d;p=NovacoinLibrary.git diff --git a/Novacoin/WrappedList.cs b/Novacoin/WrappedList.cs index 28a79a0..89c5cce 100644 --- a/Novacoin/WrappedList.cs +++ b/Novacoin/WrappedList.cs @@ -62,7 +62,7 @@ namespace Novacoin throw new WrappedListException("Unable to read requested amount of data."); } - T[] result = Elements.Skip(Index).Take(Count).ToArray(); + T[] result = Elements.Skip(Index).Take(Count).ToArray(); Index += Count; return result; @@ -75,7 +75,7 @@ namespace Novacoin throw new WrappedListException("Unable to read requested amount of data."); } - T[] result = Elements.Skip(Index).Take(Count).ToArray(); + T[] result = Elements.Skip(Index).Take(Count).ToArray(); return result; } @@ -87,7 +87,7 @@ namespace Novacoin throw new WrappedListException("Unable to read requested amount of data."); } - IEnumerable result = Elements.Skip(Index).Take(Count); + IEnumerable result = Elements.Skip(Index).Take(Count); Index += Count; return result;