In F# code I have a tuple:
let myWife=("Tijana",32)
I want to access each member of the touple separately. For instance this what I want to achieve by I can't
Console.WriteLine("My wife is {0} and her age is {1}",myWife[0],myWife[1])
This code doesn't obviously work, by I think you can gather what I want to achieve.