Sunita dube
-7
Q:

c# dictionary get value by key

 Dictionary<string, string> dict = new Dictionary<string, string>();
 dict.Add("UserID", "test");
 string userIDFromDictionaryByKey = dict["UserID"];
5
var myKey = types.FirstOrDefault(x => x.Value == "one").Key;
1

<?php
$array = array(0 => 'blue', 1 => 'red', 2 => 'green', 3 => 'red');

$key = array_search('green', $array); // $key = 2;
$key = array_search('red', $array);   // $key = 1;
?>

9
using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        Dictionary<string, int> dictionary = new Dictionary<string, int>();

        dictionary.Add("apple", 1);
        dictionary.Add("windows", 5);

        // See whether Dictionary contains this string.
        if (dictionary.ContainsKey("apple"))
        {
            int value = dictionary["apple"];
            Console.WriteLine(value);
        }

        // See whether it contains this string.
        if (!dictionary.ContainsKey("acorn"))
        {
            Console.WriteLine(false);
        }
    }
}
2
IDictionary<int, string> dict = new Dictionary<int, string>();
        
//or

Dictionary<int, string> dict = new Dictionary<int, string>();
7
// To add an item to a dictionary use 'Add()'
dict.Add(1,"One");
3
def method1(list,search_age):
	for name,age in list.iteritems():
		if age == search_age:
			return name
# Python 3
def method2(list,search_age):
	return [name for name,age in list.items() if age == search_age]

def method3(list,search_age):
	return list.keys()[list.values().index(search_age)]
1

New to Communities?

Join the community