Re: [Mono-dev] how to get MonoDroid download password?

2010-09-06 Thread Barry Song
Jonathan/Atsushi, Thanks for your both reply. Is there any way for me to purchase the monodroid and get the SDK ahead since our company wants to use it in future. We need to pre-research. -barry On 9/6/10, Atsushi Eno wrote: > Probably you haven't subscribed yourself to the beta signup (linked

Re: [Mono-dev] mono.simd

2010-09-06 Thread Rodrigo Kumpera
Robert, can you commit your patch after you state the license of it? Either via email on MDL or on the commit message. On Wed, Aug 25, 2010 at 11:56 PM, Rodrigo Kumpera wrote: > a > > On Mon, Aug 23, 2010 at 7:01 PM, Robert Jordan wrote: > >> On 23.08.2010 23:13, Rodrigo Kumpera wrote: >> > >>

[Mono-dev] compiling with dmcs

2010-09-06 Thread muizsyed
Hi Im a bit baffled. Ive been using mono and gmcs all this time on an asp.net mvc project. However, Id like to use the dynamic features and expando. So I went ahead and got dmcs installed. While compiling with gmcs all works fine but dmcs complains with error CS0006: cannot find metdata file 'S

Re: [Mono-dev] how to get MonoDroid download password?

2010-09-06 Thread Atsushi Eno
Probably you haven't subscribed yourself to the beta signup (linked from http://monodroid.net/ ). It is only for beta subscribers so far. Note that you won't receive beta tester download information. It is queued (I'm not sure if it will be all dequeued until the final release comes out). Ats

Re: [Mono-dev] Possible Bug in Mono?

2010-09-06 Thread Atsushi Eno
Hello, source code encoding can be specified when you save a source file on MonoDevelop (there is a combobox for encoding option). On compilation, monodevelop takes compiler options from the project properties. I don't know which encoding MonoDevelop on Windows uses by default (I don't have

Re: [Mono-dev] how to get MonoDroid download password?

2010-09-06 Thread Jonathan Pobst
On 9/6/2010 9:59 AM, Barry Song wrote: > Hi All, > According to http://monodroid.net/Installation, we can download the > MonoDroid for Visual Studio 2010 Plugin at > http://go-mono.com/monodroid-download. > But I wonder how to get a password for the download. Can anyone tell me? According to http:

[Mono-dev] how to get MonoDroid download password?

2010-09-06 Thread Barry Song
Hi All, According to http://monodroid.net/Installation, we can download the MonoDroid for Visual Studio 2010 Plugin at http://go-mono.com/monodroid-download. But I wonder how to get a password for the download. Can anyone tell me? Thanks Barry ___ Mono-de

Re: [Mono-dev] Possible Bug in Mono?

2010-09-06 Thread anidotnet
Atsushi Eno-2 wrote: > > (In general, avoid using such ambiguous email subject; it makes > searching relevant messages difficult.) > First of all sorry for the inconvenience caused due to short ambiguous subject of the email. Atsushi Eno-2 wrote: > > You can avoid such a problem by avoid

Re: [Mono-dev] Possible Bug in Mono?

2010-09-06 Thread Atsushi Eno
(In general, avoid using such ambiguous email subject; it makes searching relevant messages difficult.) It correctly works for me. Make sure that you don't have your source encoding and compiler -codepage argument or default encoding mismatching. The default encoding is platform dependent. Yo

Re: [Mono-dev] Possible bug in Enumerable.cs?

2010-09-06 Thread Jb Evain
On Mon, Sep 6, 2010 at 12:14 PM, anidotnet wrote: > Why? Is it a bug or something else? Looks like it. I can't repro on Mono 2.6.4 and master on Linux though. -- Jb EvainĀ  ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists

Re: [Mono-dev] Possible bug in Enumerable.cs?

2010-09-06 Thread Alexander Shulgin
On 06.09.2010 13:14, anidotnet wrote: > but Mono throws the following exception > > System.InvalidProgramException: Invalid IL code in (wrapper delegate-invoke) > System.Func`2:invoke_bool__this___char (char): IL_004d: > castclass 0x0007 > > > >at > System.Linq.Enumerable+c__Iterator1D`1[Sy

[Mono-dev] Possible bug in Enumerable.cs?

2010-09-06 Thread anidotnet
I have the following function to remove a particular character from a string public static string Remove(this string strA, char target) { char[] charArr = strA.ToCharArray(); var targetArr = new List(); targetArr.AddRange( charArr.Where(

[Mono-dev] Possible Bug in Mono?

2010-09-06 Thread anidotnet
I have the following functions to get the Unicode representation of a string - public static string ToUnicode(this string strA) { var writer = new StringWriter(); try { foreach (char c in strA)