Re: [Mono-dev] System.IO.UnmanagedMemoryStream class implementation

2006-07-24 Thread Sridhar Kulkarni
Hi, Thanks for your input and I have modified the UnmanagedMemoryStream class implementation as per your comments below. PLease consider this latest file and ignore the one which I have posted earlier. Also the Nunit test case for this class is attached. Rgds, -Sri From: Miguel de Icaza

Re: [Mono-dev] "fixed" as modifier

2006-07-24 Thread Marek Safar
Hello Jakob, This is not a conflict between ECMA and Mono implementation but as Miguel wrote it is kind of "non-standardized" feature. I hope that next version of C# standard will update appropriate section to reflect this changes. Regards, Marek > Hi Mono list, > > I'm currently writing a C# LL

Re: [Mono-dev] visual webgui for mono?

2006-07-24 Thread Simon Bain
Demo page http://www.visualwebgui.com/Technology/Demos/ClassBrowser/tabid/118/Default.aspx Styles are a little off in firefox, and the bottom of the widget does not show at all This could be firefox not reading the css completly. However... "Low Cost, Hassle-Free Deployment - Standards Complian

Re: [Mono-dev] visual webgui for mono?

2006-07-24 Thread Joshua J. Kugler
On Monday 24 July 2006 07:23, Jesse Guardiani wrote: > Looks really slick. I think the concept is that you code using the normal > WinForms API, but the code generates HTML and javascript that runs in a > thin AJAX client on the browser side. > > The problem I see is that it doesn't work in firefox

Re: [Mono-dev] visual webgui for mono?

2006-07-24 Thread Robert Jordan
Hey, Michael Schurter wrote: > Robert Jordan wrote: >> Visual WebGUI seems to be very similar to Google's approach: >> >> http://code.google.com/webtoolkit/ > > Before anyone gets too excited it should be noted Google's webtoolkit is > for Java. :) Yeah. However, Google explains better ho

Re: [Mono-dev] visual webgui for mono?

2006-07-24 Thread Jesse Guardiani
Michael Schurter wrote: > Robert Jordan wrote: >> Hey, >> >> Jesse Guardiani wrote: >>> I just ran across this today while search compulsively for things like >>> "AJAX WebOS", >>> "AJAX Internet Operating System", and "AJAX Web Desktop": >>>http://www.visualwebgui.com >>> >>> Looks really sli

Re: [Mono-dev] visual webgui for mono?

2006-07-24 Thread Michael Schurter
Robert Jordan wrote: > Hey, > > Jesse Guardiani wrote: >> I just ran across this today while search compulsively for things like "AJAX >> WebOS", >> "AJAX Internet Operating System", and "AJAX Web Desktop": >>http://www.visualwebgui.com >> >> Looks really slick. I think the concept is that yo

Re: [Mono-dev] visual webgui for mono?

2006-07-24 Thread Robert Jordan
Hey, Jesse Guardiani wrote: > I just ran across this today while search compulsively for things like "AJAX > WebOS", > "AJAX Internet Operating System", and "AJAX Web Desktop": >http://www.visualwebgui.com > > Looks really slick. I think the concept is that you code using the normal > WinFor

Re: [Mono-dev] "fixed" as modifier

2006-07-24 Thread Miguel de Icaza
Hello, > Similar code is also found in mcs/tests/test-466.cs, and both were written by > Marek Safar, whom I am cc'ing on this. (g)mcs is successfully compiling this. > But the "fixed" keyword is only specified as part of the fixed statement, not > as variable modifier. (Both in the C# 1.0 and 2

[Mono-dev] visual webgui for mono?

2006-07-24 Thread Jesse Guardiani
I just ran across this today while search compulsively for things like "AJAX WebOS", "AJAX Internet Operating System", and "AJAX Web Desktop": http://www.visualwebgui.com Looks really slick. I think the concept is that you code using the normal WinForms API, but the code generates HTML and jav

Re: [Mono-dev] Developing mono, what's the best distro?

2006-07-24 Thread Rafael Teixeira
AFAIK, for compiling from source I think mostly any distro will do, as autogen.sh/configure will ask for the strict dependencies and adapt to the rest of the environment. Last time someone asked, most devs in the list were using Fedora or Suse, but Ubuntu (rising) and Gentoo (declining) are also c

Re: [Mono-dev] Mono.Cecil: Full names of generic types

2006-07-24 Thread Matej Urbas
On Mon, 2006-07-24 at 14:22 +0200, Jb Evain wrote: > Hey, > > Matej Urbas wrote: > > I figured that they are 'compatible'. But there is one slight > > difference. You are missing a 'n' in DefaultConstructorConstraint :D > > This is fixed in SVN. Oh, sorry about that. Yep, we are using an old cop

Re: [Mono-dev] Mono.Cecil: Full names of generic types

2006-07-24 Thread Jb Evain
Hey, Matej Urbas wrote: > I figured that they are 'compatible'. But there is one slight > difference. You are missing a 'n' in DefaultConstructorConstraint :D This is fixed in SVN. Jb ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com ht

Re: [Mono-dev] Mono.Cecil: Full names of generic types

2006-07-24 Thread Matej Urbas
On Mon, 2006-07-24 at 11:20 +0200, Jb Evain wrote: > > 3. Oh, and to what extent is Mono.Cecil compatible with > > System.Reflection? E.g.: are the Mono.Cecil.GenericParamAttributes and > > System.Reflection.GenericParameterAttributes cast safe? - I mean, can > > they be cast from one-another an

Re: [Mono-dev] Mono.Cecil: Full names of generic types

2006-07-24 Thread Matej Urbas
Hey! On Mon, 2006-07-24 at 12:33 +0200, Jb Evain wrote: > There is a simpler way. The inheritance tree is like this: > > - TypeReference >- TypeSpecification > - ArrayType > - PointerType > - ReferenceType > - FunctionPointerType > - GenericInstanceType > - ModTy

Re: [Mono-dev] Mono.Cecil: Full names of generic types

2006-07-24 Thread Jb Evain
Hi, Matej Urbas wrote: > I have one question though: > Suppose we have such a TypeReference: SomeType`2[][] > Here is what I do to get all info about "SomeType`2" out of there: > I have a loop that goes like this: > Check if the TypeReference is of any of these types: > > 1. ArrayType >

Re: [Mono-dev] Mono.Cecil: Full names of generic types

2006-07-24 Thread Matej Urbas
On Mon, 2006-07-24 at 11:20 +0200, Jb Evain wrote: > You can find constructed generic types (GenericInstanceType) and > constructed generic methods (GenericInstanceMethod). > > They both implement IGenericInstance wich provides a collection of > argument. An argument is a TypeReference, which is

Re: [Mono-dev] "fixed" as modifier

2006-07-24 Thread Jonathan Pryor
On Mon, 2006-07-24 at 02:03 +0200, Jakob Petsovits wrote: > I'm currently writing a C# LL parser for KDevelop, and use the numerous Mono > source files as test cases for the parser. I've mainly been following the > C# specification, and found something in the Mono sources conflicting with it: > >

[Mono-dev] Developing mono, what's the best distro?

2006-07-24 Thread APS
Hi, I was asking me "Which distribution is used by mono developers?". I would like to create a system where patching and compiling mono source code, there's a preferable linux distribution for doing this? I saw that ubuntu comes with bundled mono support, redhat rpm's are provided by mono-project

Re: [Mono-dev] Problems with gtk# on a mandriva system.

2006-07-24 Thread Jonathan Pryor
On Sun, 2006-07-23 at 23:27 +1000, Peter Nunn wrote: > I've just tried to install mono on a mandriva system and so far most of it > seems to be working, but.. I can't get gtk# working. > > If I do > > mcs SimpleApp.cs -pkg:gtk-sharp You want -pkg:gtk-sharp-2.0. gtk-sharp is Gtk# 1.0, which

Re: [Mono-dev] Mono.Cecil: Full names of generic types

2006-07-24 Thread Jb Evain
Hi Matej, Matej Urbas wrote: > I'm working on code completion (generics support) in MonoDevelop and I'm > making extensive use of Mono.Cecil. Great news! > 2. Question about methods that have generic types as parameters: Here is > an example of such a method: > > static T System.Array.FindLas

[Mono-dev] "fixed" as modifier

2006-07-24 Thread Jakob Petsovits
Hi Mono list, I'm currently writing a C# LL parser for KDevelop, and use the numerous Mono source files as test cases for the parser. I've mainly been following the C# specification, and found something in the Mono sources conflicting with it: In mcs/tests/gtest-166.cs, there are field declarati

[Mono-dev] Problems with gtk# on a mandriva system.

2006-07-24 Thread Peter Nunn
Hi folks, I've just tried to install mono on a mandriva system and so far most of it seems to be working, but.. I can't get gtk# working. If I do mcs SimpleApp.cs -pkg:gtk-sharp I get.. Package gtk-sharp was not found in the pkg-config search path. Perhaps you should add the directory cont