[Mono-list] Why are extension method dependent on .NET 3.5?

2009-04-16 Thread Jiří Zárevúcký
Hello, I don't know whether there is some technological concept behind this, but I always found that fact very annoying. As far as I know, extension methods are purely a syntactic sugar, aren't they? As such, there should be no runtime dependence on the .NET 3.5, because everything I write using

Re: [Mono-list] HashSet appears present but uslessly broken on Ubuntu

2009-04-13 Thread Jiří Zárevúcký
2009/4/13 Alan McGovern alan.mcgov...@gmail.com: Hi, On Mon, Apr 13, 2009 at 6:40 PM, monobug funkyfredm...@hotmail.com wrote: 1.2.6 is hopelessly old. Support for newer classes is not complete there I guess. Hmm.. there may have been some confusion in the version numbers. As I stated

Re: [Mono-list] HashSet appears present but uslessly broken on Ubuntu

2009-04-13 Thread Jiří Zárevúcký
Not correct, actually. It's corlib 2.0, not mono 2.0. The package's version really is mono's version. If you don't believe me, check versions for all ubuntu releases here: http://packages.ubuntu.com/search?searchon=nameskeywords=libmono-corlib And just to be clear, the only release to

Re: [Mono-list] HashSet appears present but uslessly broken on Ubuntu

2009-04-07 Thread Jiří Zárevúcký
2009/4/6 monobug funkyfredm...@hotmail.com: Any ideas as to what is going on here? 1.2.6 is hopelessly old. Support for newer classes is not complete there I guess. Note that I cannot update this ubuntu box easily. Any idea how this happened, and fixes beyond just update via apt would be

Re: [Mono-list] mono in a marvell plug server

2009-04-06 Thread Jiří Zárevúcký
Summarizing, it's a very small Linux server. With a size of a simple cell phone charger, it have an ARM CPU at 1.2 Ghz, 512 Mb RAM and 512 Mb of flash disk, USB ports, ethernet port, a Linux distribution (I don't know which distribution) with kernel 2.6, and other features. My question

Re: [Mono-list] Guide to installing Mono 2.4 on a clean Ubuntu 8.10 Server machine

2009-04-02 Thread Jiří Zárevúcký
Hello, very nice guide. 4) Build Mono: Type: cd ~ Type: wget http://ftp.novell.com/pub/mono/sources/mono/mono-2.4.tar.bz2 Type: tar -xpjf mono-2.4.tar.bz2 This will take a minute or so because it's a big file and you won't see anything on the screen because stuff isn't too chatty in the

Re: [Mono-list] Best OS dist to use?

2009-03-08 Thread Jiří Zárevúcký
2009/3/8 Andreas Färber andreas.faer...@web.de: Am 06.03.2009 um 21:31 schrieb Jiří Zárevúcký: 2009/3/6 eschnei...@schneidersoft.com eschnei...@schneidersoft.com: I do understand. If MS can make all/most of it's Operating Systems work there they should be able to... Sorry, I

Re: [Mono-list] Best OS dist to use?

2009-03-06 Thread Jiří Zárevúcký
2009/3/6 eschnei...@schneidersoft.com eschnei...@schneidersoft.com: Yes, Everything is developed in Windows VS2008 and works. Problem is testing everything and then fixing all the issues found in Mono/Linux. I'm trying to get a whole suite of win forms components working in Mono and running

Re: [Mono-list] Best OS dist to use?

2009-03-06 Thread Jiří Zárevúcký
2009/3/6 eschnei...@schneidersoft.com eschnei...@schneidersoft.com: I do understand. If MS can make all/most of it's Operating Systems work there they should be able to... Sorry, I misunderstood you. I thought you are suggesting that Linux developer should make it work in VPC. Probably

Re: [Mono-list] Built GTK, GTK-SHARP and MONO from SVN - issue running MONO applications

2009-03-01 Thread Jiří Zárevúcký
Seems to me there's a problem with accessing the native Gtk libraries. Perhaps the wrapper tries to access the wrong copy. Are you sure you need SVN version of Gtk libraries? I think your system Gtk should be all right for Gtk#. ___ Mono-list maillist -

Re: [Mono-list] string/buffer allocation speed issue

2009-02-27 Thread Jiří Zárevúcký
are you saying that the mono/linux is optimized so that memory allocations are faster than mono/windows? (this is helpful, if true.) Mono is optimized much better for running on Linux. Why optimize something for platform, where it would get no real use? :)

Re: [Mono-list] Trolltech Qt 4 for MONO

2009-02-25 Thread Jiří Zárevúcký
2009/2/25 David Canar davidca...@gmail.com: On Tue, Feb 24, 2009 at 7:57 PM, Jiří Zárevúcký zarevucky.j...@gmail.com wrote: qt4dotnet is a slightly modified Qt Jambi compiled using ikvm Problem 1: It's a Java code running in Java VM which is running on Mono. I don't know, how does IKVM

Re: [Mono-list] Trolltech Qt 4 for MONO

2009-02-24 Thread Jiří Zárevúcký
qt4dotnet is a slightly modified Qt Jambi compiled using ikvm Problem 1: It's a Java code running in Java VM which is running on Mono. I don't know, how does IKVM performs in the terms of performance or memory usage, so correct me if I'm wrong, but isn't that utterly ineffective? Just a side

Re: [Mono-list] Mixing Mono and .NET dlls?

2009-02-21 Thread Jiří Zárevúcký
2009/2/21 fevans fev...@harris.com: Miguel's blog on Mono.Options, got me wondering (again) about hybrid projects. http://tirania.org/blog/archive/2009/Feb-21.html On the technical side, what are the advantages and pitfalls of mixing dlls from both stacks. I develop mainly in Visual Studio.

Re: [Mono-list] Regex Exception - Discrepancy between .NET and Mono

2009-02-16 Thread Jiří Zárevúcký
Hello. I guess you can file a bug, just for the sake of uniform behavior. Although it probably won't cause trouble to anyone (at least I can't imagine the scenario), fixing it should be ridiculously easy. 2009/2/16 Matt Lee thatism...@gmail.com: Dear All, The simple class below throws an

Re: [Mono-list] Managed SRV resolver

2009-01-25 Thread Jiří Zárevúcký
2009/1/25 Bill Seddon bill.sed...@lyquidity.com: Download the open source c# XMPP project from http://www.ag-software.de/ This project includes code to manage SRV records. -Original Message- From: mono-list-boun...@lists.ximian.com [mailto:mono-list-boun...@lists.ximian.com] On

[Mono-list] Managed SRV resolver

2009-01-24 Thread Jiří Zárevúcký
Hello. I need a managed (or in any way multiplatform without recompilation) DNS SRV record resolver to my project, but I only found a P/Invoke wrapper for Linux library. Does anyone know of some library I can use? If not, is there a way to get DNS server's IP address?

Re: [Mono-list] I need help with FUD

2009-01-16 Thread Jiří Zárevúcký
2009/1/16 neptune235 muchom...@gmail.com: And if that is correct, how can I show to people exactly what that totally free part of Mono is? The FUD is so vague, I get the impression that the entirety of this project is patented by Microsoft, but when I look for details I'm not seeing it. Is

Re: [Mono-list] Qyoto project dead ?

2009-01-16 Thread Jiří Zárevúcký
Sorry about off-topic, but I wonder if there is some documentation on the web? I tried to find some, but with no luck. ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list