Just use the dictionary
var lookup = new Dictionary<string,string>();
then set the entry in the dictionary
lookup[lucio] = textValue;
and access it
Console.WriteLine(lookup[lucio])
if you really want to check that the string has a value from 0 to 15, then first analyze it and check it and use a dictionary with an integer as the key
var lookup = new Dictionary<int,string>();
source share