<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr - chavcho</title>
<link>http://snipplr.com/users/chavcho</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Thu, 23 May 2013 15:46:36 GMT</pubDate>
<item>
<title>(VB.NET) Serialize an object and write it to the disk</title>
<link>http://snipplr.com/view/12960/serialize-an-object-and-write-it-to-the-disk/</link>
<description><![CDATA[ <p>Serializes any  object and writes it to the specified location on the disk.

Example:


Dim obj As DataTable
'save obj to disk
SerializeToFile(filepath, obj)
'to read it back, use DirectCast
Dim obj2 As DataTable = DirectCast(My.Computer.FileSystem.ReadAllBytes(filepath), DataTable)</p> ]]></description>
<pubDate>Tue, 10 Mar 2009 10:30:05 GMT</pubDate>
<guid>http://snipplr.com/view/12960/serialize-an-object-and-write-it-to-the-disk/</guid>
</item>
<item>
<title>(VB.NET) Extract an Image Embedded as a Resource</title>
<link>http://snipplr.com/view/12959/extract-an-image-embedded-as-a-resource/</link>
<description><![CDATA[ <p>Use this to extract an image embedded as a resource in your project. Call the function supplying the full path to the resource, for example:

Dim myImage as Bitmap = EmbeddedIcon("MyApplication1.myImage.png")

Where "MyApplication1" is the root namespace for the project.</p> ]]></description>
<pubDate>Tue, 10 Mar 2009 10:17:32 GMT</pubDate>
<guid>http://snipplr.com/view/12959/extract-an-image-embedded-as-a-resource/</guid>
</item>
<item>
<title>(VB.NET) Extract an Icon Embedded as a Resource</title>
<link>http://snipplr.com/view/12958/extract-an-icon-embedded-as-a-resource/</link>
<description><![CDATA[ <p>Use this to extract an icon embedded as a resource in your project. Call the function supplying the full path to the resource, for example:

Dim myIcon as Icon = EmbeddedIcon("MyApplication1.myicon.ico")

Where "MyApplication1" is the root namespace for the project.</p> ]]></description>
<pubDate>Tue, 10 Mar 2009 10:14:38 GMT</pubDate>
<guid>http://snipplr.com/view/12958/extract-an-icon-embedded-as-a-resource/</guid>
</item>
</channel>
</rss>