wasSharpNET

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 28  →  ?path2? @ 29
/Cryptography/AES.cs
@@ -82,7 +82,7 @@
{
// retrieve the salt from the data.
var segments = new List<string>(data.Split(new[] {separator}, StringSplitOptions.None));
if (!segments.Count.Equals(2))
if (!segments.Count().Equals(2))
throw new ArgumentException("Invalid data.");
 
string plaintext;