On Fri, Feb 15, 2008 at 1:08 PM, Lorenzo Viola <[EMAIL PROTECTED]> wrote: > btw , what do you mean for implicit boxing ? is it a sort of unwanted > recursion ?
Boxing happens when you store a value type in an object reference, e.g. in C# doing "object o = 1;", a new object is contained to hold the boxed Int32. -- Chris Howie http://www.chrishowie.com http://en.wikipedia.org/wiki/User:Crazycomputers _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
