Posted on: 7/5/2015 7:13:47 PM | Views : 766

I have a simple ASP application in which I pass an ID to a function and a get a result...  For Example I would send the value of 9 and the function would return the name John as:
return USERNAME;
I now want to expand my function so that it still receives and ID of 9, but now it returns 2 values (First & Last)
Q - What would the return look like, and in my C#, how do I reference the first or second value?

Go to the complete details ...