What does Dictionary<string, /> mean?

Viewed 246

I ran across this construct in an online tutorial:

Dictionary<string, /> dictionary = new Dictionary<string, />();

I hadn't seen this syntax before and wasn't sure what it meant. I am not even certain that it is valid syntax at all as I can't get it to compile on my own.

1 Answers
Related