using System.Collections.Generic;
public static void Main()
Console.WriteLine("Hello World");
public interface IPixel<T> : IPixel where T : IPixel<T>
PixelOperations<T> CreatePixelOperations();
public class Rgba32 : IPixel<Rgba32>
public PixelOperations<Rgba32> CreatePixelOperations()
public class Image<TPixel> where TPixel : IPixel<TPixel>
private List<TPixel> Pixels;
public TPixel this[int x, int y]
get { return Pixels[x*y]; }
public class PixelOperations<TPixel> where TPixel : IPixel<TPixel>
public static PixelOperations<TPixel> Instance { get { return default(TPixel).CreatePixelOperations(); }}
public interface IPixelAlt
public class Rgba32Alt : IPixelAlt
public class ImageAlt<TPixel> where TPixel : IPixelAlt
private List<TPixel> Pixels;
public TPixel this[int x, int y]
get { return Pixels[x*y]; }