A developer wants to initialize a dictionary with a key of integers and values that are strings. Which initialization expression should be used?
New Dictionary (Of Int32, String) from {{"3", "5"}, {"three", "five"}}
New Dictionary (Of Int32, String) from {{3, "three"}, {5, "five"}}
New Dictionary (Of Int32, String) from {{"3", "three"}, {"5", "five"}}
New Dictionary (Of Int32, String) from {{3, 5}, {"three", "five"}}
Submit