Skip to content

Instantly share code, notes, and snippets.

View h26k2's full-sized avatar

Hasnain Karim h26k2

  • DoLocal Limited - Multi Award Winning Digital Marketing Agency in Liverpool
  • Karachi, Pakistan
  • LinkedIn in/hasnainkarim262
View GitHub Profile
@h26k2
h26k2 / multiple_value_dictionary.cs
Created September 24, 2018 18:12 — forked from ishu3101/multiple_value_dictionary.cs
Dictionary with Single Key and Multiple Values Example in C#. See https://repl.it/CY3S/1 to run example code online.
using System;
using System.Collections.Generic;
class MainClass {
public static void Main (string[] args) {
Dictionary<string, List<String>> map = new Dictionary<string, List<String>>();
// create list one and store values
List<string> valSetOne = new List<string>();