Re: [Mono-dev] Mono-2.8.2 Cross Compiled for ARM processor (Interesting issue with Generics)

2011-03-01 Thread Sean Hubbell
Why is that as it returns true on Windows? -- View this message in context: http://mono.1490590.n4.nabble.com/Mono-2-8-2-Cross-Compiled-for-ARM-processor-Interesting-issue-with-Generics-tp3328883p3330068.html Sent from the Mono - Dev mailing list archive at Nabble.com.

[Mono-dev] Mono-2.8.2 Cross Compiled for ARM processor (Interesting issue with Generics)

2011-02-28 Thread Sean Hubbell
Given the following example, could someone confirm if this is an issue or just my misunderstanding of the methods? The below is Mono 2.8.2 Cross Compiled for an ARM processor. The issue comes up when I would like to do a couple of things with generics: public static bool

[Mono-dev] Mono-2.8.2 Cross Compiled for ARM (Interesting issue with DLLNotFound exception)

2011-02-28 Thread Sean Hubbell
I have a wrapper around the PAM library implemented in C. I created a wrapper around this in C# (basically calls my method for authentication) and ran into a DLLNotFoundException. This works fine with MONO but does not work when I use mod_mono. I found this by commenting out the dependancies on

[Mono-list] Downcasting using generics in Mono-2.8.2

2011-02-15 Thread Sean Hubbell
Hello, I have cross compiled mono and mod_mono to run on an arm processor. I am running into the following issue: I create a generic object and add it to a collection like so: collection.Add(new ConfigurableItemstring, int(MyKey, 10)); When I retrieve the item out of the collection, I