mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 12:07:05 +00:00
Relaxing parameter type
This commit is contained in:
parent
d3ff3f8955
commit
0284026053
1 changed files with 2 additions and 2 deletions
|
|
@ -868,7 +868,7 @@ namespace ICD.Common.Utils.Xml
|
|||
/// <param name="childElement"></param>
|
||||
/// <param name="keyElement"></param>
|
||||
/// <param name="valueElement"></param>
|
||||
public static void WriteDictToXml<TKey, TValue>(IcdXmlTextWriter writer, IDictionary<TKey, TValue> dict,
|
||||
public static void WriteDictToXml<TKey, TValue>(IcdXmlTextWriter writer, IEnumerable<KeyValuePair<TKey, TValue>> dict,
|
||||
string rootElement, string childElement, string keyElement,
|
||||
string valueElement)
|
||||
{
|
||||
|
|
@ -895,7 +895,7 @@ namespace ICD.Common.Utils.Xml
|
|||
/// <param name="childElement"></param>
|
||||
/// <param name="writeKey"></param>
|
||||
/// <param name="writeValue"></param>
|
||||
public static void WriteDictToXml<TKey, TValue>(IcdXmlTextWriter writer, IDictionary<TKey, TValue> dict,
|
||||
public static void WriteDictToXml<TKey, TValue>(IcdXmlTextWriter writer, IEnumerable<KeyValuePair<TKey, TValue>> dict,
|
||||
string rootElement, string childElement, Action<TKey> writeKey,
|
||||
Action<TValue> writeValue)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue