How convert function operator from c# into vb.net,
If i have this code:
Dictionary<string, string> sd = new Dictionary<string, string>();
string sKey = sd.Single(kvp => kvp.Value.Equals("A value")).Key;
how to convert it to vb.net?
I am trying to get the Key name from a dictionary list