<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Christian Nagel's OneNotes - All Comments</title><link>http://weblogs.asp.net/cnagel/default.aspx</link><description>.NET Training, Consulting, Coaching - C#, Web Services, Enterprise Services, ASP.NET, Whidbey, Longhorn and More!</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Debug Build: 20510.895)</generator><item><title>re: .NET 2.0: Database Independent ADO.NET</title><link>http://weblogs.asp.net/cnagel/archive/2003/10/30/34657.aspx#7236414</link><pubDate>Thu, 22 Oct 2009 22:25:55 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7236414</guid><dc:creator>JXL99</dc:creator><description>&lt;p&gt;This is classic fragmented identity management, operationalized &amp;nbsp; in a real-world technical system. , &lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7236414" width="1" height="1"&gt;</description></item><item><title>re: Creating Word Documents with XSLT</title><link>http://weblogs.asp.net/cnagel/archive/2004/09/25/234188.aspx#7190285</link><pubDate>Thu, 03 Sep 2009 08:45:28 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7190285</guid><dc:creator>keshav</dc:creator><description>&lt;p&gt;can we create XML like&lt;/p&gt;
&lt;p&gt;&amp;lt;Title&amp;gt;&amp;lt;i&amp;gt;XML Web Services Programming&amp;lt;/i&amp;gt;&amp;lt;/Title&amp;gt;&lt;/p&gt;
&lt;p&gt;so that &amp;quot;XML Web Services Programming&amp;quot; look like as&lt;/p&gt;
&lt;p&gt;itellic.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7190285" width="1" height="1"&gt;</description></item><item><title>re: Interface Inheritance</title><link>http://weblogs.asp.net/cnagel/archive/2004/05/09/128659.aspx#7168315</link><pubDate>Thu, 13 Aug 2009 15:12:28 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7168315</guid><dc:creator>TamusJRoyce</dc:creator><description>&lt;p&gt;abstract class in vb .net is called MustInherit, and therefore &lt;/p&gt;
&lt;p&gt;&amp;quot;Such a scenario seems not possible with VB&amp;quot;&lt;/p&gt;
&lt;p&gt; is not only possible, but identical in functionality with C#.&lt;/p&gt;
&lt;p&gt;The main point in this article has overlooked this:&lt;/p&gt;
&lt;p&gt;public interface IA&lt;/p&gt;
&lt;p&gt; &amp;nbsp; Sub A()&lt;/p&gt;
&lt;p&gt;End IA&lt;/p&gt;
&lt;p&gt;public mustinherit class XA&lt;/p&gt;
&lt;p&gt; &amp;nbsp; Public Sub A()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; End Sub&lt;/p&gt;
&lt;p&gt;End Class&lt;/p&gt;
&lt;p&gt;public class X&lt;/p&gt;
&lt;p&gt;Inherits XA&lt;/p&gt;
&lt;p&gt;Implements IA&lt;/p&gt;
&lt;p&gt;End Class&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7168315" width="1" height="1"&gt;</description></item><item><title>re: C++/CLI Value Types and Memory Location</title><link>http://weblogs.asp.net/cnagel/archive/2005/02/28/381542.aspx#7153649</link><pubDate>Thu, 23 Jul 2009 21:48:44 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7153649</guid><dc:creator>Miguel</dc:creator><description>&lt;p&gt;I have another question as well:&lt;/p&gt;
&lt;p&gt;3. If Value classes can be allocated on the stack, on the managed heap or on the native heap &lt;/p&gt;
&lt;p&gt;and &lt;/p&gt;
&lt;p&gt;Ref Classes can be allocated on the stack or on the managed heap, &lt;/p&gt;
&lt;p&gt;then &lt;/p&gt;
&lt;p&gt;what is the purpose of having Value Classes and Ref Classes ? (i.e., I was thinking up to now that a Value Class is used when you want to put the class on the stack and a Ref class is used when you want to put the class on the managed heap. Maybe this thinking is completely wrong).&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Miguel.&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7153649" width="1" height="1"&gt;</description></item><item><title>re: C++/CLI Value Types and Memory Location</title><link>http://weblogs.asp.net/cnagel/archive/2005/02/28/381542.aspx#7153642</link><pubDate>Thu, 23 Jul 2009 21:34:54 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7153642</guid><dc:creator>Miguel</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Thanks for this nice short article. &amp;nbsp;May I ask two questions ?&lt;/p&gt;
&lt;p&gt;1. MyData^ d3 = gcnew MyData();&lt;/p&gt;
&lt;p&gt;d3-&amp;gt;Simple = 33;&lt;/p&gt;
&lt;p&gt;In this case, MyData is created on the managed heap - is this correct ?&lt;/p&gt;
&lt;p&gt;2. Are ref classes always created on the managed heap (unless they are created as a local variable as you mentioned in one of your other articles) ? Or can they be created on the native heap ?&lt;/p&gt;
&lt;p&gt;Thanks and regards,&lt;/p&gt;
&lt;p&gt;Miguel&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7153642" width="1" height="1"&gt;</description></item><item><title>Knowing .NET  &amp;raquo; Blog Archive   &amp;raquo; Don&amp;#8217;t do this with SQL</title><link>http://weblogs.asp.net/cnagel/archive/2004/02/17/74765.aspx#7143604</link><pubDate>Wed, 08 Jul 2009 13:58:14 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7143604</guid><dc:creator>Knowing .NET  » Blog Archive   » Don’t do this with SQL</dc:creator><description>&lt;p&gt;Pingback from &amp;nbsp;Knowing .NET &amp;nbsp;&amp;amp;raquo; Blog Archive &amp;nbsp; &amp;amp;raquo; Don&amp;amp;#8217;t do this with SQL&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7143604" width="1" height="1"&gt;</description></item><item><title>re: Properties with C++/CLI</title><link>http://weblogs.asp.net/cnagel/archive/2004/12/17/323549.aspx#7117755</link><pubDate>Thu, 11 Jun 2009 18:30:13 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7117755</guid><dc:creator>Vic</dc:creator><description>&lt;p&gt;Thanks! &amp;nbsp;That's exactly what I was looking for at the moment I found your answer above.&lt;/p&gt;
&lt;p&gt;One little note:&lt;/p&gt;
&lt;p&gt;The 'get' function definition requires a return type preceding the namespace, but otherwise, works like a champ!&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7117755" width="1" height="1"&gt;</description></item><item><title>re: Access Modifiers: C++/CLI vs C# vs VB</title><link>http://weblogs.asp.net/cnagel/archive/2004/12/20/327247.aspx#7088018</link><pubDate>Fri, 15 May 2009 15:29:43 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7088018</guid><dc:creator>Justin</dc:creator><description>&lt;p&gt;No problemo, just wanted to try to open a line of communication with these all too coincidental ghosts that are haunting me... &amp;nbsp;but I'm thinking they may actually be angels, dear grandmothers watching over me from on high...&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7088018" width="1" height="1"&gt;</description></item><item><title>re: Filling DataSets with Multiple Tables</title><link>http://weblogs.asp.net/cnagel/archive/2003/10/22/32904.aspx#7083525</link><pubDate>Tue, 12 May 2009 06:18:58 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7083525</guid><dc:creator>Baljeet</dc:creator><description>&lt;p&gt;How bind this dataset with dropdownlist&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7083525" width="1" height="1"&gt;</description></item><item><title>re: Access Modifiers: C++/CLI vs C# vs VB</title><link>http://weblogs.asp.net/cnagel/archive/2004/12/20/327247.aspx#7022546</link><pubDate>Thu, 02 Apr 2009 08:33:54 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7022546</guid><dc:creator>boltonss</dc:creator><description>&lt;p&gt;vb.net access specifiers&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://vb.net-informations.com/language/vb.net_access_specifiers.htm"&gt;vb.net-informations.com/.../vb.net_access_specifiers.htm&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;C# Access Specifiers&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://csharp.net-informations.com/language/csharp-access-specifiers.htm"&gt;csharp.net-informations.com/.../csharp-access-specifiers.htm&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7022546" width="1" height="1"&gt;</description></item></channel></rss>