public Tuple<string, int> aaCreeDtaOneAccount(int NbLines, string Straccref)
{
return new Tuple<string,int>(StrFullFilDtaname,NbLines);
}
This function is in my Business Layer and i want to access in my UI
I want to access the two values NbLines and StrFullFilDtaname
How do i do that in C# Please Help
Use
Item1andItem2properties ofTuple<T1, T2>class: