On Jul 10, 2013, at 11:56 AM, mugginsoft <[email protected]> wrote: > I am trying to access a simple extension method in an embedded mono project.
Extension methods are C# "syntactic sugar" to invoke a static method. Extension methods WILL NOT appear as instance methods on the given type, ever, via both the embedded API and System.Reflection. You must instead invoke the static method directly. - Jon _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
