I really do believe that I’m not asking a good question, but I’m new newbie
When I’m programming for example I try to use the contain method for finding a value in the dictionary data type:
I cud do it in my mind by two way:
dict.Values.Contains(str)(however I had an error using it)
or
dict.ContainsValue(str)
i'm confused
thank you