jpobst

Stories kicked by jpobst

Static Method Interception in .NET with C# and Mono.Cecil(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years ago

Interested in Mono.Cecil? A very short introduction to a very cool and powerful tool. read more...

add a comment |category: |Views: 402

tags: another

Using MoMA to Port from .Net to Mono(eweek.com)

submitted by jpobstjpobst(155) 3 years, 1 month ago

Describes how you can use MoMA to test your .Net application's readiness to run on Mono. read more...

add a comment |category: |Views: 21

tags: another

Novell’s Mono brings SIMD support to C#(ddj.com)

submitted by mark_csharpcodermark_csharpcoder(135) 3 years, 1 month ago

Parallel programming is not just about multi-threading and multi-core. There’s also a lot of power in the SIMD (Single Instruction Multiple Data) extended instruction set available in most modern microprocessors from Intel and AMD. From Dr Dobb's Go Parallel blog. read more...

1 comment |category: |Views: 220

tags: another

Getting Mono and Visual Studio to play nice together(chriscyvas.wordpress.com)

submitted by ccyvasccyvas(635) 3 years, 3 months ago

The goal was to get some Mono project templates working with Mono assemblies and the Mono compiler in Visual Studio. The trick was to do it in a way that would be able to survive upgrades of Mono installations. read more...

add a comment |category: |Views: 300

tags: another

Moonlight 1.0 Release(weblogs.asp.net)

submitted by sharplifesharplife(4570) 3 years, 3 months ago

Now Linux lovers can enjoy Silverlight streaming media with Moonlight 1.0. Read what Scott Guthrie tells us about this open source implementation of Silverlight. read more...

add a comment |category: |Views: 149

tags: another

Moonlight 1.0 Release - Open Source Silverlight 1.0 Implementation on (hanselman.com)

submitted by mariotm82mariotm82(95) 3 years, 3 months ago

Scott Hanselman talks about Moonlight 1.0. read more...

add a comment |category: |Views: 14

tags: another

Mono 2.0 Released(mono-project.com)

submitted by jpobstjpobst(155) 3 years, 7 months ago

The Mono Project has released version 2.0 of Mono, enabling developers to run their .Net 2.0 applications on Linux and OSX. read more...

4 comments |category: |Views: 303

tags: another

LINQ Expression Trees on the Compact Framework(evain.net)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 8 months ago

A week ago, I was writing about the ability to use Mono’s System.Core to run C# 3 and LINQ applications on .net 2. A few months ago, I was writing about the new LINQ provider that friends at db4o released. This LINQ provider uses LINQ expression trees to optimize LINQ queries, turning them into db4o’s native query language. Today I’m going to write about a cute new hack from our friends at db4o. If the 3.5 version of the Compact Framework comes with a System.Core, and a LINQ to objects implementation, it doesn’t contain the namespace System.Linq.Expressions, which is used by all optimized LINQ providers. What those fine folks did, was simply to take Mono’s implementation of this namespace. There was one issue with that approach. Expression Trees can be compiled at runtime, and that uses System.Reflection.Emit, that the Compact Framework doesn’t have. A nice thing is that folks at Mainsoft contributed to Mono’s System.Core an expression interpreter, which allows you to use the full LINQ expression trees without using System.Reflection.Emit. They sent me the patches they have for the expression interp read more...

add a comment |category: |Views: 42

tags: another