Cita de: Novlucker en 4 Julio 2013, 16:39 PMAlgo como esto en C#
Muy bueno Nov!, gracias, la verdad es que necesitaba simplificar esa función y eres el único de todo stackoverflow que ha llegado a conseguirlo xD.
Lo mismo pero en VB:
Código (vbnet) [Seleccionar]
Public Function Find_Dictionary_Key_By_Value(Of K, V)(Dictionary As Dictionary(Of K, V), Value As V) As K
Dim Key = Dictionary.FirstOrDefault(Function(x) x.Value.Equals(Value)).Key
If Key Is Nothing Then
Throw New Exception("The value is not found in the dictionary.")
End If
Return Key
End Function
Cita de: Ikillnukes en 4 Julio 2013, 23:10 PM
http://foro.elhacker.net/net/libreria_de_snippets_posteen_aqui_sus_snippets-t378770.0.html;msg1857514#msg1857514
Siempre me salta la Excepción de Could not set keyboard hook
Que puedo hacer? :S
Se me olvidó mencionar este detalle:
CitarProject -> Properties -> Debug -> Uncheck "Enable the Visual Studio hosting process"
Saludos!