DictionaryExtensionTryGetValueT1, T2 Method

Definition

Namespace: FileHold.LibraryManager.Extensions
Assembly: FileHold.LibraryManager (in FileHold.LibraryManager.dll) Version: 17.1.0.0
C#
public static bool TryGetValue<T1, T2>(
	this Dictionary<T1, Object> dictonary,
	T1 key,
	out T2 castedValue
)

Parameters

dictonary  DictionaryT1, Object
 
key  T1
 
castedValue  T2
 

Type Parameters

T1

[Missing <typeparam name="T1"/> documentation for "M:FileHold.LibraryManager.Extensions.DictionaryExtension.TryGetValue``2(System.Collections.Generic.Dictionary{``0,System.Object},``0,``1@)"]

T2

[Missing <typeparam name="T2"/> documentation for "M:FileHold.LibraryManager.Extensions.DictionaryExtension.TryGetValue``2(System.Collections.Generic.Dictionary{``0,System.Object},``0,``1@)"]

Return Value

Boolean

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DictionaryT1, Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also