Skip to content

Instantly share code, notes, and snippets.

View FoC-'s full-sized avatar
💭
Taking shower and eating after midnight.

Mykola Kush FoC-

💭
Taking shower and eating after midnight.
View GitHub Profile
@FoC-
FoC- / gist:4203761
Created December 4, 2012 13:14
Resharper bug
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
var sellers = new string[2, 2];
sellers[1, 1] = Seller.Amazon.ToString();
@FoC-
FoC- / Undead_beta
Created May 28, 2012 10:05
Need to create class which could not been destroyed by GC
using System;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
Undead undead = null;
try
{