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 ?
Yes could create a new type that will contain multiple properties and then return this type:
public MyType MyMethod() { return new MyType { Prop1 = "foo", Prop2 = "bar" }; }