Hii
I have method in C#, I have to return multiple values from that method with out using collections like arrays. Is there any reliable way ?
public int Method Name(out string stringValue, out int intValue) { /// Method goes here /// return intVaraible }
here you will get 3 return Values 1. stringValue 2. intValue 3. intVariable