Cosmos/source2/Debug/Cosmos.Debug.Common/NameValueCollectionHelper.cs
mterwoord_cp 2de90087b6
2010-05-26 16:06:37 +00:00

47 lines
No EOL
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections.Specialized;
namespace Cosmos.Debug.Common
{
public static class NameValueCollectionHelper
{
public static string DumpToString(NameValueCollection value)
{
var xSB = new StringBuilder();
foreach (string xKey in value.Keys)
{
xSB.AppendFormat("{0}={1};", xKey, (string)value[xKey]);
}
return xSB.ToString();
}
public static void LoadFromString(NameValueCollection target, string value)
{
if (target.Count > 0)
{
throw new Exception("Target is not empty!");
}
if (String.IsNullOrEmpty(value))
{
return;
}
string[] xPairs = value.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries);
foreach (var xPair in xPairs)
{
string[] xParts = xPair.Split('=');
if (xParts.Length > 1)
{
target.Add(xParts[0], xParts[1]);
}
else
{
target.Add(xParts[0], "");
}
}
}
}
}