CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of LosFormatter
C#
public static string LOSSerializeObject(object obj)
{
    System.Web.UI.LosFormatter output = new System.Web.UI.LosFormatter();
    StringWriter writer = new StringWriter();
    output.Serialize(writer, obj);
    return writer.ToString();
}
 
public static object LOSDeserializeObject(string inputString)
{
by jrt   September 18, 2009 @ 6:00pm
419 Views
no comments
 
C#
public static string KeyToString(object itemKey)
{
using (TextWriter writer = new StringWriter())
{
LosFormatter formatter = new LosFormatter();
formatter.Serialize(writer, itemKey);
return HttpUtility.UrlEncode(writer.ToString());
}
}
by jrt   September 18, 2009 @ 5:58pm
259 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate