Skip to content

Instantly share code, notes, and snippets.

View molinch's full-sized avatar
😁

Fabien Molinet molinch

😁
View GitHub Profile
@molinch
molinch / Program.cs
Last active March 8, 2018 10:32
Portable MEF / ExportFactory
using System;
using System.Composition;
using System.Composition.Hosting;
using System.Reflection;
namespace ConsoleApp6
{
public interface IFu {}
[Export(typeof(IFu)), Shared]
@molinch
molinch / DemoOutOfMemory.cs
Last active December 21, 2017 14:11
OutOfMemory with Roslyn scripting API
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Scripting;
using Microsoft.CodeAnalysis.Scripting;
using Microsoft.CSharp.RuntimeBinder;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Dynamic;
using System.Linq;