<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Lines between methods in the C# editor (CodeRush/DxCore plugin)</title>
	<atom:link href="http://blog.dotsmart.net/2008/05/02/lines-between-methods-in-the-c-editor-coderushdxcore-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dotsmart.net/2008/05/02/lines-between-methods-in-the-c-editor-coderushdxcore-plugin/</link>
	<description>insert witty, geeky tagline here...</description>
	<lastBuildDate>Fri, 03 Feb 2012 22:33:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Samuel Tremblay</title>
		<link>http://blog.dotsmart.net/2008/05/02/lines-between-methods-in-the-c-editor-coderushdxcore-plugin/#comment-1959</link>
		<dc:creator><![CDATA[Samuel Tremblay]]></dc:creator>
		<pubDate>Fri, 08 Apr 2011 18:08:40 +0000</pubDate>
		<guid isPermaLink="false">http://dotsmart.wordpress.com/?p=13#comment-1959</guid>
		<description><![CDATA[Very nice plugin. 

I worked in vb.net for about 10 years and now I&#039;m in c#. The lines betwen methods is not essential but it&#039;s better to read code when you work 8 hours a day, 5 days a week.

Thank you very much.]]></description>
		<content:encoded><![CDATA[<p>Very nice plugin. </p>
<p>I worked in vb.net for about 10 years and now I&#8217;m in c#. The lines betwen methods is not essential but it&#8217;s better to read code when you work 8 hours a day, 5 days a week.</p>
<p>Thank you very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ofer</title>
		<link>http://blog.dotsmart.net/2008/05/02/lines-between-methods-in-the-c-editor-coderushdxcore-plugin/#comment-1173</link>
		<dc:creator><![CDATA[Ofer]]></dc:creator>
		<pubDate>Fri, 11 Jun 2010 08:38:39 +0000</pubDate>
		<guid isPermaLink="false">http://dotsmart.wordpress.com/?p=13#comment-1173</guid>
		<description><![CDATA[also added this:
if (args.LanguageElement is Comment &amp;&amp; args.LanguageElement.ToString() == &quot;!&quot;)
{
  var adornment = new
    DrawLinesBetweenMethodsDocumentAdornment
      (args.LanguageElement.Range);
  args.AddBackgroundAdornment(adornment);
  return;
}  

this will draw line on every &quot;//!&quot; comment.
it enables you to draw lines wherever you want.

sample:

  int MyPrpop1 { get; set; }
  int MyPrpop2 { get; set; }
  int MyPrpop3 { get; set; }
  //!---------------------------------------------]]></description>
		<content:encoded><![CDATA[<p>also added this:<br />
if (args.LanguageElement is Comment &amp;&amp; args.LanguageElement.ToString() == &#8220;!&#8221;)<br />
{<br />
  var adornment = new<br />
    DrawLinesBetweenMethodsDocumentAdornment<br />
      (args.LanguageElement.Range);<br />
  args.AddBackgroundAdornment(adornment);<br />
  return;<br />
}  </p>
<p>this will draw line on every &#8220;//!&#8221; comment.<br />
it enables you to draw lines wherever you want.</p>
<p>sample:</p>
<p>  int MyPrpop1 { get; set; }<br />
  int MyPrpop2 { get; set; }<br />
  int MyPrpop3 { get; set; }<br />
  //!&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duncan Smart</title>
		<link>http://blog.dotsmart.net/2008/05/02/lines-between-methods-in-the-c-editor-coderushdxcore-plugin/#comment-1171</link>
		<dc:creator><![CDATA[Duncan Smart]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 12:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://dotsmart.wordpress.com/?p=13#comment-1171</guid>
		<description><![CDATA[Cheers ]]></description>
		<content:encoded><![CDATA[<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ofer</title>
		<link>http://blog.dotsmart.net/2008/05/02/lines-between-methods-in-the-c-editor-coderushdxcore-plugin/#comment-1170</link>
		<dc:creator><![CDATA[Ofer]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 11:36:47 +0000</pubDate>
		<guid isPermaLink="false">http://dotsmart.wordpress.com/?p=13#comment-1170</guid>
		<description><![CDATA[add this code:
if (args.LanguageElement.EndLine ==
    args.LanguageElement.StartLine)
  return;
just after this line:
if (!settings.Enabled)
   return;

to the method EventNexus_DecorateLanguageElement in DrawLinesBetweenMethodsPlugIn.cs]]></description>
		<content:encoded><![CDATA[<p>add this code:<br />
if (args.LanguageElement.EndLine ==<br />
    args.LanguageElement.StartLine)<br />
  return;<br />
just after this line:<br />
if (!settings.Enabled)<br />
   return;</p>
<p>to the method EventNexus_DecorateLanguageElement in DrawLinesBetweenMethodsPlugIn.cs</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duncan Smart</title>
		<link>http://blog.dotsmart.net/2008/05/02/lines-between-methods-in-the-c-editor-coderushdxcore-plugin/#comment-1169</link>
		<dc:creator><![CDATA[Duncan Smart]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 07:53:59 +0000</pubDate>
		<guid isPermaLink="false">http://dotsmart.wordpress.com/?p=13#comment-1169</guid>
		<description><![CDATA[Send me the patch and I&#039;ll look into including it! ]]></description>
		<content:encoded><![CDATA[<p>Send me the patch and I&#8217;ll look into including it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ofer</title>
		<link>http://blog.dotsmart.net/2008/05/02/lines-between-methods-in-the-c-editor-coderushdxcore-plugin/#comment-1168</link>
		<dc:creator><![CDATA[Ofer]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 05:17:26 +0000</pubDate>
		<guid isPermaLink="false">http://dotsmart.wordpress.com/?p=13#comment-1168</guid>
		<description><![CDATA[btw, I added a condition to avoid drawing a line in case of a one liner property e.g.:
int MyProp { get; set; }]]></description>
		<content:encoded><![CDATA[<p>btw, I added a condition to avoid drawing a line in case of a one liner property e.g.:<br />
int MyProp { get; set; }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ofer</title>
		<link>http://blog.dotsmart.net/2008/05/02/lines-between-methods-in-the-c-editor-coderushdxcore-plugin/#comment-1167</link>
		<dc:creator><![CDATA[Ofer]]></dc:creator>
		<pubDate>Thu, 10 Jun 2010 05:13:15 +0000</pubDate>
		<guid isPermaLink="false">http://dotsmart.wordpress.com/?p=13#comment-1167</guid>
		<description><![CDATA[hurrah!!!!!]]></description>
		<content:encoded><![CDATA[<p>hurrah!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marek Benes</title>
		<link>http://blog.dotsmart.net/2008/05/02/lines-between-methods-in-the-c-editor-coderushdxcore-plugin/#comment-1163</link>
		<dc:creator><![CDATA[Marek Benes]]></dc:creator>
		<pubDate>Wed, 09 Jun 2010 13:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://dotsmart.wordpress.com/?p=13#comment-1163</guid>
		<description><![CDATA[Thanks!!!!!!!!!!!!!!!]]></description>
		<content:encoded><![CDATA[<p>Thanks!!!!!!!!!!!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duncan Smart</title>
		<link>http://blog.dotsmart.net/2008/05/02/lines-between-methods-in-the-c-editor-coderushdxcore-plugin/#comment-1162</link>
		<dc:creator><![CDATA[Duncan Smart]]></dc:creator>
		<pubDate>Wed, 09 Jun 2010 09:52:06 +0000</pubDate>
		<guid isPermaLink="false">http://dotsmart.wordpress.com/?p=13#comment-1162</guid>
		<description><![CDATA[Fixed :-) http://code.google.com/p/dxcorecommunityplugins/source/detail?r=1339]]></description>
		<content:encoded><![CDATA[<p>Fixed :-) <a href="http://code.google.com/p/dxcorecommunityplugins/source/detail?r=1339" rel="nofollow">http://code.google.com/p/dxcorecommunityplugins/source/detail?r=1339</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duncan Smart</title>
		<link>http://blog.dotsmart.net/2008/05/02/lines-between-methods-in-the-c-editor-coderushdxcore-plugin/#comment-1161</link>
		<dc:creator><![CDATA[Duncan Smart]]></dc:creator>
		<pubDate>Wed, 09 Jun 2010 09:51:45 +0000</pubDate>
		<guid isPermaLink="false">http://dotsmart.wordpress.com/?p=13#comment-1161</guid>
		<description><![CDATA[Fixed :-)  http://code.google.com/p/dxcorecommunityplugins/source/detail?r=1339]]></description>
		<content:encoded><![CDATA[<p>Fixed :-)  <a href="http://code.google.com/p/dxcorecommunityplugins/source/detail?r=1339" rel="nofollow">http://code.google.com/p/dxcorecommunityplugins/source/detail?r=1339</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

