I’ve created a simple validity checker desktop application for Rapidshare links.
I am giving out the source code and the binary, in case anyone is interested.
July 12, 2009 at 1:13 am (C#, Windows)
Tags: C#, checker, code, http, link, multiple, non-working, rapidshare, request, source, validity, working
I’ve created a simple validity checker desktop application for Rapidshare links.
I am giving out the source code and the binary, in case anyone is interested.
October 20, 2008 at 4:42 pm (C#)
Tags: arrays, dynamic, parameter, variable
This may be old news to you, but I have learned the existence of something like that in C# just now.
C# offers a very elegant solution to this problem with something called parameter arrays.
The signature of the method should be something like this:
void PassDynamicNumberofParameters (params int[] parameters) |
September 8, 2008 at 9:25 pm (C#, MSSQL)
Tags: id, inserted, last, MSSQL, procedure, row, stored, tsql
It is quite easy to get the last inserted row id in TSQL.
Just create a stored procedure as below.