Forum: C# Oct 27th, 2008 |
| Replies: 9 Views: 28,711 int fact(int rank)
{
for(int i = 1; i<rank;i++) i *=1;
return i ;
}
try this, I don't test it you can test it |
Forum: C# Jan 7th, 2008 |
| Replies: 3 Views: 3,310 There are for algorithms of encryption/decryption with in the .Net framework
DES algorithm, RC2 algorithm, Rijindael algorithm and TripleDES algorithm they are represented as classes
First step... |