$ git status
$ git add 'fileName'
public class Bootstrapper : BootstrapperBase | |
{ | |
private IUnityContainer _unityContainer; | |
#region Constructor | |
public Bootstrapper() | |
{ | |
Initialize(); | |
} | |
#endregion |
// -------------------------------------------------------------------------------------------------------------------- | |
// <summary> | |
// Represents an annotation that shows a rounded rectangle. Forked from OxyPlot Source. | |
// </summary> | |
// -------------------------------------------------------------------------------------------------------------------- | |
using System; | |
namespace OxyPlot.Annotations | |
{ |
public class Program | |
{ | |
static void Main() | |
{ | |
BenchmarkRunner.Run<BenchmarkDemo>(); | |
} | |
} | |
[MemoryDiagnoser] | |
public class BenchmarkDemo |
public class MEFBootstrapper:BootstrapperBase | |
{ | |
#region Private Variables | |
private CompositionContainer _Container; | |
#endregion | |
#region Constructor | |
public MEFBootstrapper() | |
{ | |
Initialize(); |
public class SCBootstrapper:BootstrapperBase | |
{ | |
private readonly SimpleContainer _Container = new SimpleContainer(); | |
public SCBootstrapper() | |
{ | |
Initialize(); | |
} | |
protected override void Configure() | |
{ |