<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic vbcrlf equivalent in c# in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/vbcrlf-equivalent-in-c/m-p/2554973#M69125</link>
    <description>Searching for hours in the help for c# couldn't find anything under carriage&lt;BR /&gt;
return or line feed&lt;BR /&gt;
Finally used reflector to look at a vb code snippet and found&lt;BR /&gt;
ChrW(13) + ChrW(10)&lt;BR /&gt;
&lt;BR /&gt;
as in&lt;BR /&gt;
&lt;BR /&gt;
ed.WriteMessage(btr.Name + ChrW(13) + ChrW(10))&lt;BR /&gt;
&lt;BR /&gt;
however when i put that in code error says ChrW doesn't exist in this&lt;BR /&gt;
namespace&lt;BR /&gt;
&lt;BR /&gt;
so search in help for ChrW under c# and find the method which says it's&lt;BR /&gt;
under Strings.ChrW&lt;BR /&gt;
&lt;BR /&gt;
but when I added strings. i get error that Strings isn't in namespace&lt;BR /&gt;
&lt;BR /&gt;
in the help page Filtered by C# entering chrw in index pulls up a page&lt;BR /&gt;
saying it's visualbasic&lt;BR /&gt;
&lt;BR /&gt;
and the strings class is under microsoft.visualbasic namespace...but i'm&lt;BR /&gt;
trying to do it in c# so i'm a bit confused&lt;BR /&gt;
&lt;BR /&gt;
finally at the end of that method description it shows function defs for&lt;BR /&gt;
diff langs&lt;BR /&gt;
&lt;BR /&gt;
i had to enter a function def&lt;BR /&gt;
&lt;BR /&gt;
public static char ChrW(&lt;BR /&gt;
int CharCode&lt;BR /&gt;
)in order to use chrw but i dont' think that should be required????also i&lt;BR /&gt;
had to change &amp;amp; to + to concatenate the chrw returnwhat am i missing?thanks&lt;BR /&gt;
mark</description>
    <pubDate>Fri, 11 Sep 2009 00:19:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-09-11T00:19:50Z</dc:date>
    <item>
      <title>vbcrlf equivalent in c#</title>
      <link>https://forums.autodesk.com/t5/net-forum/vbcrlf-equivalent-in-c/m-p/2554973#M69125</link>
      <description>Searching for hours in the help for c# couldn't find anything under carriage&lt;BR /&gt;
return or line feed&lt;BR /&gt;
Finally used reflector to look at a vb code snippet and found&lt;BR /&gt;
ChrW(13) + ChrW(10)&lt;BR /&gt;
&lt;BR /&gt;
as in&lt;BR /&gt;
&lt;BR /&gt;
ed.WriteMessage(btr.Name + ChrW(13) + ChrW(10))&lt;BR /&gt;
&lt;BR /&gt;
however when i put that in code error says ChrW doesn't exist in this&lt;BR /&gt;
namespace&lt;BR /&gt;
&lt;BR /&gt;
so search in help for ChrW under c# and find the method which says it's&lt;BR /&gt;
under Strings.ChrW&lt;BR /&gt;
&lt;BR /&gt;
but when I added strings. i get error that Strings isn't in namespace&lt;BR /&gt;
&lt;BR /&gt;
in the help page Filtered by C# entering chrw in index pulls up a page&lt;BR /&gt;
saying it's visualbasic&lt;BR /&gt;
&lt;BR /&gt;
and the strings class is under microsoft.visualbasic namespace...but i'm&lt;BR /&gt;
trying to do it in c# so i'm a bit confused&lt;BR /&gt;
&lt;BR /&gt;
finally at the end of that method description it shows function defs for&lt;BR /&gt;
diff langs&lt;BR /&gt;
&lt;BR /&gt;
i had to enter a function def&lt;BR /&gt;
&lt;BR /&gt;
public static char ChrW(&lt;BR /&gt;
int CharCode&lt;BR /&gt;
)in order to use chrw but i dont' think that should be required????also i&lt;BR /&gt;
had to change &amp;amp; to + to concatenate the chrw returnwhat am i missing?thanks&lt;BR /&gt;
mark</description>
      <pubDate>Fri, 11 Sep 2009 00:19:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vbcrlf-equivalent-in-c/m-p/2554973#M69125</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-11T00:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: vbcrlf equivalent in c#</title>
      <link>https://forums.autodesk.com/t5/net-forum/vbcrlf-equivalent-in-c/m-p/2554974#M69126</link>
      <description>how about "\r\n" ?&lt;BR /&gt;
&lt;BR /&gt;
or &lt;BR /&gt;
&lt;BR /&gt;
ed.WriteMessage("\n{0}", btr.Name);

Edited by: danielm103 on Sep 10, 2009 9:49 PM</description>
      <pubDate>Fri, 11 Sep 2009 01:03:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vbcrlf-equivalent-in-c/m-p/2554974#M69126</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-11T01:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: vbcrlf equivalent in c#</title>
      <link>https://forums.autodesk.com/t5/net-forum/vbcrlf-equivalent-in-c/m-p/2554975#M69127</link>
      <description>perhaps try ...&lt;BR /&gt;
Environment.NewLine&lt;BR /&gt;
&lt;BR /&gt;
/// kdub&lt;BR /&gt;
&lt;BR /&gt;
"mp" &lt;NOSPAM&gt; wrote in message &lt;BR /&gt;
news:6252744@discussion.autodesk.com...&lt;BR /&gt;
Searching for hours in the help for c# couldn't find anything under carriage&lt;BR /&gt;
return or line feed&lt;BR /&gt;
Finally used reflector to look at a vb code snippet and found&lt;BR /&gt;
ChrW(13) + ChrW(10)&lt;BR /&gt;
&lt;BR /&gt;
as in&lt;BR /&gt;
&lt;BR /&gt;
ed.WriteMessage(btr.Name + ChrW(13) + ChrW(10))&lt;BR /&gt;
&lt;BR /&gt;
however when i put that in code error says ChrW doesn't exist in this&lt;BR /&gt;
namespace&lt;BR /&gt;
&lt;BR /&gt;
so search in help for ChrW under c# and find the method which says it's&lt;BR /&gt;
under Strings.ChrW&lt;BR /&gt;
&lt;BR /&gt;
but when I added strings. i get error that Strings isn't in namespace&lt;BR /&gt;
&lt;BR /&gt;
in the help page Filtered by C# entering chrw in index pulls up a page&lt;BR /&gt;
saying it's visualbasic&lt;BR /&gt;
&lt;BR /&gt;
and the strings class is under microsoft.visualbasic namespace...but i'm&lt;BR /&gt;
trying to do it in c# so i'm a bit confused&lt;BR /&gt;
&lt;BR /&gt;
finally at the end of that method description it shows function defs for&lt;BR /&gt;
diff langs&lt;BR /&gt;
&lt;BR /&gt;
i had to enter a function def&lt;BR /&gt;
&lt;BR /&gt;
public static char ChrW(&lt;BR /&gt;
int CharCode&lt;BR /&gt;
)in order to use chrw but i dont' think that should be required????also i&lt;BR /&gt;
had to change &amp;amp; to + to concatenate the chrw returnwhat am i missing?thanks&lt;BR /&gt;
mark&lt;/NOSPAM&gt;</description>
      <pubDate>Fri, 11 Sep 2009 01:45:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vbcrlf-equivalent-in-c/m-p/2554975#M69127</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-11T01:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: vbcrlf equivalent in c#</title>
      <link>https://forums.autodesk.com/t5/net-forum/vbcrlf-equivalent-in-c/m-p/2554976#M69128</link>
      <description>venturing into c#?  there is tons of stuff on the net.&lt;BR /&gt;
&lt;BR /&gt;
http://dotnetperls.com/whitespace&lt;BR /&gt;
&lt;BR /&gt;
"mp" &lt;NOSPAM&gt; wrote in message &lt;BR /&gt;
news:6252744@discussion.autodesk.com...&lt;BR /&gt;
Searching for hours in the help for c# couldn't find anything under carriage&lt;BR /&gt;
return or line feed&lt;BR /&gt;
Finally used reflector to look at a vb code snippet and found&lt;BR /&gt;
ChrW(13) + ChrW(10)&lt;BR /&gt;
&lt;BR /&gt;
as in&lt;BR /&gt;
&lt;BR /&gt;
ed.WriteMessage(btr.Name + ChrW(13) + ChrW(10))&lt;BR /&gt;
&lt;BR /&gt;
however when i put that in code error says ChrW doesn't exist in this&lt;BR /&gt;
namespace&lt;BR /&gt;
&lt;BR /&gt;
so search in help for ChrW under c# and find the method which says it's&lt;BR /&gt;
under Strings.ChrW&lt;BR /&gt;
&lt;BR /&gt;
but when I added strings. i get error that Strings isn't in namespace&lt;BR /&gt;
&lt;BR /&gt;
in the help page Filtered by C# entering chrw in index pulls up a page&lt;BR /&gt;
saying it's visualbasic&lt;BR /&gt;
&lt;BR /&gt;
and the strings class is under microsoft.visualbasic namespace...but i'm&lt;BR /&gt;
trying to do it in c# so i'm a bit confused&lt;BR /&gt;
&lt;BR /&gt;
finally at the end of that method description it shows function defs for&lt;BR /&gt;
diff langs&lt;BR /&gt;
&lt;BR /&gt;
i had to enter a function def&lt;BR /&gt;
&lt;BR /&gt;
public static char ChrW(&lt;BR /&gt;
int CharCode&lt;BR /&gt;
)in order to use chrw but i dont' think that should be required????also i&lt;BR /&gt;
had to change &amp;amp; to + to concatenate the chrw returnwhat am i missing?thanks&lt;BR /&gt;
mark&lt;/NOSPAM&gt;</description>
      <pubDate>Fri, 11 Sep 2009 14:52:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vbcrlf-equivalent-in-c/m-p/2554976#M69128</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-11T14:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: vbcrlf equivalent in c#</title>
      <link>https://forums.autodesk.com/t5/net-forum/vbcrlf-equivalent-in-c/m-p/2554977#M69129</link>
      <description>Thanks to all, kerry, daniel and fieldguy!&lt;BR /&gt;
&lt;BR /&gt;
"fieldguy" &lt;NOMAIL-POST&gt; wrote in message &lt;BR /&gt;
news:6253024@discussion.autodesk.com...&lt;BR /&gt;
venturing into c#?  there is tons of stuff on the net.&lt;BR /&gt;
&lt;BR /&gt;
http://dotnetperls.com/whitespace&lt;BR /&gt;
&lt;BR /&gt;
"mp" &lt;NOSPAM&gt; wrote in message&lt;BR /&gt;
news:6252744@discussion.autodesk.com...&lt;BR /&gt;
Searching for hours in the help for c# couldn't find anything under carriage&lt;BR /&gt;
return or line feed&lt;/NOSPAM&gt;&lt;/NOMAIL-POST&gt;</description>
      <pubDate>Fri, 11 Sep 2009 16:59:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/vbcrlf-equivalent-in-c/m-p/2554977#M69129</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-11T16:59:36Z</dc:date>
    </item>
  </channel>
</rss>

