<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general">
    <title>gmane.comp.gnome.mono.general</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43735"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43734"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43733"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43732"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43731"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43730"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43729"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43727"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43726"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43725"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43724"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43723"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43722"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43721"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43720"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43719"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43718"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43717"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43716"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43715"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43735">
    <title>Re: Async sockets and memory leaks in BeginSend</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43735</link>
    <description>&lt;pre&gt;Thank you for you suggestion.

SocketAsyncResult has Dispose method in it's implementation, but how could I
call Dispose on SocketAsyncResult if this class is internal? BeginSend
returns IAsyncResult interface, which does not have Dispose in the interface
definition. 

I found some old posts in the internet about similar issue with
OverlappedAsyncResult (internal implementation of IAsyncResult in BeginSend
in .NET). They told, that in .NET 1.1 there was a memory leak in similar
scenarious, because buffer was pinned and memory could not be defragmented
by GC. Also, they told, that in .NET 2.0 such issue was fixed. 

They recommended  to pool buffers to prevent reallocating them in memory. I
followed this advice and removed creation of SendStateObject from the Send
function.  Creation SendStateObject only one time per each client in class
constructor helped me to minimize memory leaks, so they now not so huge, but
still present. 



--
View this message in context: http://mono.1490590.n4.nabble.com/Async-socke&lt;/pre&gt;</description>
    <dc:creator>xplicit</dc:creator>
    <dc:date>2012-05-24T18:46:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43734">
    <title>Re: Async sockets and memory leaks in BeginSend</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43734</link>
    <description>&lt;pre&gt;Thank you for your attention to this topic. I am using mono 2.10.8.1. I
think, the most latest version (2.11) still in the alpha, so it will be very
difficult to test production environment with alpha version.  


--
View this message in context: http://mono.1490590.n4.nabble.com/Async-sockets-and-memory-leaks-in-BeginSend-tp4648844p4649532.html
Sent from the Mono - General mailing list archive at Nabble.com.
_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

&lt;/pre&gt;</description>
    <dc:creator>xplicit</dc:creator>
    <dc:date>2012-05-24T18:00:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43733">
    <title>Re: .ctor () is too complex.</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43733</link>
    <description>&lt;pre&gt;
Rodrigo Kumpera wrote

It's work! Thank you!

--
View this message in context: http://mono.1490590.n4.nabble.com/ctor-is-too-complex-tp4628623p4649510.html
Sent from the Mono - General mailing list archive at Nabble.com.
_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

&lt;/pre&gt;</description>
    <dc:creator>Petr.Zorin</dc:creator>
    <dc:date>2012-05-23T16:18:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43732">
    <title>Re: ApplicationSettingsBase acting different from Windows? P</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43732</link>
    <description>&lt;pre&gt;I wouldn't be surprised. There are other discrepancies with that
class. I've had a bug report for one of them open for 1.5 years now
that hasn't been touched :)

https://bugzilla.xamarin.com/show_bug.cgi?id=2315
https://bugzilla.novell.com/show_bug.cgi?id=666459

I'm not sure how heavily tested/maintained that code path is under mono.

Good luck,
Nicholas

On Fri, May 25, 2012 at 8:32 AM, efontana &amp;lt;eric&amp;lt; at &amp;gt;fontanas.net&amp;gt; wrote:
_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

&lt;/pre&gt;</description>
    <dc:creator>Nicholas Frechette</dc:creator>
    <dc:date>2012-05-25T15:31:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43731">
    <title>ApplicationSettingsBase acting different from Windows? P</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43731</link>
    <description>&lt;pre&gt;I've got this small test program, which is trying to use the
ApplicationSettingsBase to persist a list
of strings.

Code is here:  http://pastebin.com/GpcPhDz6 http://pastebin.com/GpcPhDz6 

The problem is it never adds more than 2 items?  On Windows, items keep
getting added?  

Running this on Linux (mono 2.10.8) shows this output:


[eric&amp;lt; at &amp;gt;farm228 settingstest]$ mono bin/Debug/settingstest.exe

before
after
Item: item0
[eric&amp;lt; at &amp;gt;farm228 settingstest]$ mono bin/Debug/settingstest.exe

before
Item: item0
after
Item: item0
Item: item1
[eric&amp;lt; at &amp;gt;farm228 settingstest]$ mono bin/Debug/settingstest.exe

before
Item: item0
after
Item: item0
Item: item1
[eric&amp;lt; at &amp;gt;farm228 settingstest]$ mono bin/Debug/settingstest.exe

before
Item: item0
after
Item: item0
Item: item1


--
View this message in context: http://mono.1490590.n4.nabble.com/ApplicationSettingsBase-acting-different-from-Windows-P-tp4649540.html
Sent from the Mono - General mailing list archive at Nabble.com.
_______________________________________________
Mono-list ma&lt;/pre&gt;</description>
    <dc:creator>efontana</dc:creator>
    <dc:date>2012-05-25T12:32:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43730">
    <title>Re: Encoding Issue .Net vs. Mono</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43730</link>
    <description>&lt;pre&gt;Actually, i just found out that on Linux the environment variable:

LANG=en_US.UTF-8

Defines the encoding. When run from a cron-job my application used a
different encoding than when run manually. I had to force the LANG setting
in the cronjob to enable UTF-8.

David


Atsushi Eno-2 wrote

--
View this message in context: http://mono.1490590.n4.nabble.com/Encoding-Issue-Net-vs-Mono-tp3684639p4649527.html
Sent from the Mono - General mailing list archive at Nabble.com.
_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

&lt;/pre&gt;</description>
    <dc:creator>davidweilers</dc:creator>
    <dc:date>2012-05-24T12:33:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43729">
    <title>Re: bool Type.op_Inequality (Type, Type) Implement it properly once 4.0 impl details are known.</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43729</link>
    <description>&lt;pre&gt;
You can.

Robert



_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

&lt;/pre&gt;</description>
    <dc:creator>Robert Jordan</dc:creator>
    <dc:date>2012-05-24T08:50:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43727">
    <title>Re: Async sockets and memory leaks in BeginSend</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43727</link>
    <description>&lt;pre&gt;Hi!

May be this is a bit ingeniuos, but have you tried to use some dispose() or using (...) to that object ?

Cheers

-----Original Message-----

From: xplicit
Sent: 23 May 2012 06:13:15 GMT
To: mono-list&amp;lt; at &amp;gt;lists.ximian.com
Subject: [Mono-list] Async sockets and memory leaks in BeginSend

I am developing server with mono using async socket model. Currently it's
about 500 simultaneously working clients with 20-100 operations per seconds.
The code should send messages accordingly theirs creation time, so I use
such pattern:

Send()
{
    //Dequeue message from queue. Messages placed in the queue accordingly
theirs creation time
    SendStateObject state=new SendStateObject();
    state.buffer=Dequeue();
    state.socket=client;

    //some checks in the code were removed, this function is called only
when no other send callbacks were ran
    client.BeginSend(state.buffer, 0, state.buffer.Length, SocketFlags.None,
new AsyncCallback(SendCallback), state);

}

private void SendCallback(IAsyncResult ar)
{
    SendS&lt;/pre&gt;</description>
    <dc:creator>Gabriel Ibanez</dc:creator>
    <dc:date>2012-05-23T22:46:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43726">
    <title>bool Type.op_Inequality (Type, Type) Implement it properly once 4.0 impl details are known.</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43726</link>
    <description>&lt;pre&gt;This is the only alert that MoMa reported after examine LUCENE.NET



Can I use LUCENE.NET without lossing functionality?
_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list
&lt;/pre&gt;</description>
    <dc:creator>Alberto León</dc:creator>
    <dc:date>2012-05-23T22:17:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43725">
    <title>Re: Async sockets and memory leaks in BeginSend</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43725</link>
    <description>&lt;pre&gt;Yes that particular memory leak was present in 2.10.6 for sure and
possibly in 2.10.8 as well. I was told this is claim fixed in master
but haven't tested yet.
Note that this affected all callbacks called from native code. GTK#
was hit pretty bad by this particular leak. If you search the mailing
list with my name you should find the bug report i filled quite
easily.

Regards,
Nicholas

On Wed, May 23, 2012 at 3:50 AM, Rolf Bjarne Kvinge &amp;lt;rolf&amp;lt; at &amp;gt;xamarin.com&amp;gt; wrote:
_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

&lt;/pre&gt;</description>
    <dc:creator>Nicholas Frechette</dc:creator>
    <dc:date>2012-05-23T14:09:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43724">
    <title>Mono.WebBrowser switching from Gecko to Webkit</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43724</link>
    <description>&lt;pre&gt;Hi Community

In newer releases of Ubuntu, libgluezilla has been removed from the repository and with it the capability of the WebBrowser Control to display any kind of web based content. I know have trouble finding a new solution for embedding Flash into my Application.

The mono project website states that it is possible to use WebKit as the rendering engine for the WebBrowser Control, but it lacks any kind of Documentation. [1] The mono version I'm running is 2.10.8 on Ubuntu 12.4. Unfortunately moving the Gui Toolkit to GTK is not an Option at this point.

I have webkit-sharp installed and also libmono-webbrowser. My Gtk Test Program worked fine. So the only thing to do is to get the things running in collaboration with WinForms. I've tried referencing Mono.WebBrowser directly which was no use since Mono.WebKit is hidden inside. The compiler error demands libgluezilla to be installed. [2]

The main goal is getting Flash running inside a WinForms Control. If there is another, more practical way to do this&lt;/pre&gt;</description>
    <dc:creator>Adrian Stern</dc:creator>
    <dc:date>2012-05-23T13:33:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43723">
    <title>Re: Async sockets and memory leaks in BeginSend</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43723</link>
    <description>&lt;pre&gt;Hi,

Which version of Mono are you using? I believe this particular scenario has
been improved a lot in mono master, so can you try that if you're not
already using it?

Rolf

On Mon, May 21, 2012 at 10:51 PM, xplicit &amp;lt;svg&amp;lt; at &amp;gt;ngs.ru&amp;gt; wrote:

_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list
&lt;/pre&gt;</description>
    <dc:creator>Rolf Bjarne Kvinge</dc:creator>
    <dc:date>2012-05-23T07:50:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43722">
    <title>Async sockets and memory leaks in BeginSend</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43722</link>
    <description>&lt;pre&gt;I am developing server with mono using async socket model. Currently it's
about 500 simultaneously working clients with 20-100 operations per seconds.
The code should send messages accordingly theirs creation time, so I use
such pattern:

Send()
{
    //Dequeue message from queue. Messages placed in the queue accordingly
theirs creation time     
    SendStateObject state=new SendStateObject();
    state.buffer=Dequeue();  
    state.socket=client;
    
    //some checks in the code were removed, this function is called only
when no other send callbacks were ran
    client.BeginSend(state.buffer, 0, state.buffer.Length, SocketFlags.None,
new AsyncCallback(SendCallback), state);

} 

private void SendCallback(IAsyncResult ar)
{
    SendStateObject sendState = (SendStateObject)ar.AsyncState;
    Socket client = sendState.workSocket;

    try
    {
          client.EndSend(ar);
    }
    catch() /*Some exceptions handling */
    {}
    finally
    {
          sendState.buffer=null;
          sendState.workSocke&lt;/pre&gt;</description>
    <dc:creator>xplicit</dc:creator>
    <dc:date>2012-05-21T20:51:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43721">
    <title>MonoDevelop 3.0 doesn't show the "Create mac installer" option anymore</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43721</link>
    <description>&lt;pre&gt;Was it removed for good?  

If it was, is there a reason?  

-
Maurício Linhares
http://techbot.me/ - http://twitter.com/#!/mauriciojr


_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list
&lt;/pre&gt;</description>
    <dc:creator>Maurício Linhares</dc:creator>
    <dc:date>2012-05-22T14:02:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43720">
    <title>Re: Memory limit</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43720</link>
    <description>&lt;pre&gt;use the MONO_GC_PARAMS env var with max-heap-size=xxxx.

On Tue, May 22, 2012 at 2:47 AM, goodd21 &amp;lt;goodd21&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list
&lt;/pre&gt;</description>
    <dc:creator>Rodrigo Kumpera</dc:creator>
    <dc:date>2012-05-22T11:09:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43719">
    <title>Re: Memory limit</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43719</link>
    <description>&lt;pre&gt;
If you are running on linux, you can set the memory limit with
'ulimit' before running mono.

-Gonzalo
_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

&lt;/pre&gt;</description>
    <dc:creator>Gonzalo Paniagua Javier</dc:creator>
    <dc:date>2012-05-22T10:01:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43718">
    <title>Memory limit</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43718</link>
    <description>&lt;pre&gt;Is there a way to limit the max memory usage of mono ? 
In other languages, like java or php, there are options like -Xmx for Java
or -memory_limit for Php. 
Is there an equivalent mechanism for mono?

Thanks,
goodd21

--
View this message in context: http://mono.1490590.n4.nabble.com/Memory-limit-tp4649443.html
Sent from the Mono - General mailing list archive at Nabble.com.
_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

&lt;/pre&gt;</description>
    <dc:creator>goodd21</dc:creator>
    <dc:date>2012-05-22T05:47:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43717">
    <title>Re: System.Drawing.Graphics.Transform has no effect in Mono under Linux</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43717</link>
    <description>&lt;pre&gt;Can anyone help me with above issue?

--
View this message in context: http://mono.1490590.n4.nabble.com/System-Drawing-Graphics-Transform-has-no-effect-in-Mono-under-Linux-tp4614100p4647932.html
Sent from the Mono - General mailing list archive at Nabble.com.
_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

&lt;/pre&gt;</description>
    <dc:creator>alex</dc:creator>
    <dc:date>2012-05-21T10:11:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43716">
    <title>Error compiling</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43716</link>
    <description>&lt;pre&gt;I'm trying to compile mono 2.10.2 on RHEL 4U8 with GCC 4.6.2 and encounter
this error during make:

test_glib-string-util.o(.text+0x2373): In function `test_strdupv':
/home/admin/mono-2.10.2/eglib/test/string-util.c:640: undefined reference to
`g_strv_length'
collect2: ld returned 1 exit status
make[4]: *** [test-glib] Error 1

Anyone have experience with error before? 

Thanks.

--
View this message in context: http://mono.1490590.n4.nabble.com/Error-compiling-tp4643136.html
Sent from the Mono - General mailing list archive at Nabble.com.
_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

&lt;/pre&gt;</description>
    <dc:creator>wnowak1</dc:creator>
    <dc:date>2012-05-17T15:42:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43715">
    <title>Re: Detect OS?</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43715</link>
    <description>&lt;pre&gt;Something like this works well to detect OS version, and whether it is
running on mono, mac, linux, or windows:

https://github.com/picoe/Eto/blob/master/Source/Eto/Misc/Platform.cs

Then you can just use Platform.IsWindows, Platform.IsLinux, Platform.IsMono,
etc. 

Hope this helps!
Curtis.

--
View this message in context: http://mono.1490590.n4.nabble.com/Detect-OS-tp4645659p4645699.html
Sent from the Mono - General mailing list archive at Nabble.com.
_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

&lt;/pre&gt;</description>
    <dc:creator>Curtis Wensley</dc:creator>
    <dc:date>2012-05-19T05:45:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.gnome.mono.general/43714">
    <title>Re: Detect OS?</title>
    <link>http://permalink.gmane.org/gmane.comp.gnome.mono.general/43714</link>
    <description>&lt;pre&gt;This is what I use:
http://code.google.com/p/epicedit/source/browse/EpicEdit/Platform.cs


Immortal wrote

--
View this message in context: http://mono.1490590.n4.nabble.com/Detect-OS-tp4645659p4645698.html
Sent from the Mono - General mailing list archive at Nabble.com.
_______________________________________________
Mono-list maillist  -  Mono-list&amp;lt; at &amp;gt;lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

&lt;/pre&gt;</description>
    <dc:creator>Stifu</dc:creator>
    <dc:date>2012-05-19T05:44:39</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.gnome.mono.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.gnome.mono.general</link>
  </textinput>
</rdf:RDF>

