Skip to content

Instantly share code, notes, and snippets.

View AndreyChechel's full-sized avatar

Andrey Chechel AndreyChechel

View GitHub Profile
@AndreyChechel
AndreyChechel / App.cs
Created November 25, 2017 23:04
Retyped.angular in action
using Bridge;
using System;
using System.Collections.Generic;
using Retyped;
namespace AngularDemo
{
public class App
{
[Init]
@AndreyChechel
AndreyChechel / CloneStackPerformanceTests.cs
Last active July 19, 2017 20:44
Performance analysis of approaches to clone a Stack<T> instance
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Linq.Expressions;
public class Program
{
public void Main()
{