i create a dll with C# framework 2.0 and want use that in another applications... but i have a problem i cannot return two value from method for example:
public string Two_String_Returner()
{
int aa = 50;
string bb = "Hello";
return aa.ToString();
return bb;
}
1-i must return two value, once is int and another is string 2- this return should be Apart from each other
i how can do this?