| DictionaryEntryHandler Delegate |
The type for a method which is called, to process a key value pair of strings.
Namespace:
Mastersign.Bench
Assembly:
BenchLib (in BenchLib.dll) Version: 0.22.0.0 (0.22.0.0)
Syntax public delegate void DictionaryEntryHandler(
string key,
string value
)
Public Delegate Sub DictionaryEntryHandler (
key As String,
value As String
)
Parameters
- key
- Type: SystemString
The key to process. - value
- Type: SystemString
The value to process.
See Also