<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Introduction To VB.NET Delegates</title>
	<atom:link href="http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/feed/" rel="self" type="application/rss+xml" />
	<link>http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/</link>
	<description>Articles on VB.NET and Software Development Team Leadership</description>
	<pubDate>Sun, 14 Mar 2010 21:15:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: John Wood</title>
		<link>http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/comment-page-1/#comment-1410</link>
		<dc:creator>John Wood</dc:creator>
		<pubDate>Fri, 09 Oct 2009 17:27:55 +0000</pubDate>
		<guid isPermaLink="false">http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/#comment-1410</guid>
		<description>hey jfrankcarr,
  Could you check this out and see what you think the hell someone was thinking when they did this?
&lt;code&gt;
CustomConverters.Add(typeof(Color), delegate(object value) { return ColorTranslator.ToHtml((Color) value); });
            Converter dateTimeConverter = delegate(object value)
                {
                    DateTime? date = (DateTime?) value;
                    return (date != null) ? date.Value.ToUniversalTime().ToString("r") : null;
                };
            CustomConverters.Add(typeof(DateTime), dateTimeConverter);
            CustomConverters.Add(typeof(DateTime?), dateTimeConverter);
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>hey jfrankcarr,<br />
  Could you check this out and see what you think the hell someone was thinking when they did this?<br />
<code><br />
CustomConverters.Add(typeof(Color), delegate(object value) { return ColorTranslator.ToHtml((Color) value); });<br />
            Converter dateTimeConverter = delegate(object value)<br />
                {<br />
                    DateTime? date = (DateTime?) value;<br />
                    return (date != null) ? date.Value.ToUniversalTime().ToString("r") : null;<br />
                };<br />
            CustomConverters.Add(typeof(DateTime), dateTimeConverter);<br />
            CustomConverters.Add(typeof(DateTime?), dateTimeConverter);<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tariq</title>
		<link>http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/comment-page-1/#comment-1375</link>
		<dc:creator>Tariq</dc:creator>
		<pubDate>Tue, 14 Jul 2009 10:24:04 +0000</pubDate>
		<guid isPermaLink="false">http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/#comment-1375</guid>
		<description>Simply, Best explaination found
Thanks a lot</description>
		<content:encoded><![CDATA[<p>Simply, Best explaination found<br />
Thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ramnani shaila</title>
		<link>http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/comment-page-1/#comment-1257</link>
		<dc:creator>ramnani shaila</dc:creator>
		<pubDate>Wed, 26 Nov 2008 21:09:51 +0000</pubDate>
		<guid isPermaLink="false">http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/#comment-1257</guid>
		<description>i don't have a comment thanks for all this ..just have a few more question regarding delegates if u can help me out... how properties and attibutes of an object can be set?
try to ans me if u can thanks</description>
		<content:encoded><![CDATA[<p>i don&#8217;t have a comment thanks for all this ..just have a few more question regarding delegates if u can help me out&#8230; how properties and attibutes of an object can be set?<br />
try to ans me if u can thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/comment-page-1/#comment-1125</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 03 Jun 2008 17:53:43 +0000</pubDate>
		<guid isPermaLink="false">http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/#comment-1125</guid>
		<description>Hi,
Indeed, very usefull article. It helped me better to understand the use of delegates. However, there is one thing that doesn't seem to work for me. I can give my delegates access to any function or procedure within another class as long as the delegate function as well as the target function are declared as public shared, not as private and the delegate is declared outside a custom class.
probably i'm looking over something here but i can't figured it out.

My target functions are within normal class (class.vb) and the delegate routine stands above this class but in the same file.
I invoke the delegate in a partial class on a code behind file (.aspx) and it works when as well delegate and routine are declared as public (shared).

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Indeed, very usefull article. It helped me better to understand the use of delegates. However, there is one thing that doesn&#8217;t seem to work for me. I can give my delegates access to any function or procedure within another class as long as the delegate function as well as the target function are declared as public shared, not as private and the delegate is declared outside a custom class.<br />
probably i&#8217;m looking over something here but i can&#8217;t figured it out.</p>
<p>My target functions are within normal class (class.vb) and the delegate routine stands above this class but in the same file.<br />
I invoke the delegate in a partial class on a code behind file (.aspx) and it works when as well delegate and routine are declared as public (shared).</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jfrankcarr</title>
		<link>http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/comment-page-1/#comment-708</link>
		<dc:creator>jfrankcarr</dc:creator>
		<pubDate>Thu, 04 Oct 2007 12:52:21 +0000</pubDate>
		<guid isPermaLink="false">http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/#comment-708</guid>
		<description>Thanks Awais

I'm glad you found it helpful.</description>
		<content:encoded><![CDATA[<p>Thanks Awais</p>
<p>I&#8217;m glad you found it helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Awais</title>
		<link>http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/comment-page-1/#comment-705</link>
		<dc:creator>Awais</dc:creator>
		<pubDate>Thu, 04 Oct 2007 05:36:04 +0000</pubDate>
		<guid isPermaLink="false">http://vbnotebookfor.net/2007/08/24/introduction-to-vbnet-delegates/#comment-705</guid>
		<description>Your article is great. It helped me very much in understanding of Delegates. Carry on. Take care.</description>
		<content:encoded><![CDATA[<p>Your article is great. It helped me very much in understanding of Delegates. Carry on. Take care.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
