Superb. Microsoft should remove the System.Security.Cryptography as soon as possible. ;P
I
Ibrahim Yusuf
@Ibrahim Yusuf
Posts
-
Secure enrcyption function -
Performance GeniusReally a way to show performance improvement. :doh: Version 1.0
for ( int i = 0; i < data.Count; i++ )
{
Thread.Sleep(200);
container.Add(data[i].Items);
}Version 2.0
for ( int i = 0; i < data.Count; i++ )
{
Thread.Sleep(100);
container.Add(data[i].Items);
}Version 3.0
for ( int i = 0; i < data.Count; i++ )
{
container.Add(data[i].Items);
}Should I tell the boss? X|