Can I set a ValueTuple field value only by have its name as string ?
I guess I can do this using Reflection but is there more direct way to do it ?
I want to do something like this :
(string email, int age) user = ("abcd@domain.com", 20)
user.SetValue("email", "1234@domain.com");
// or
user["email"] = "1234@domain.com"