Skip to content

Instantly share code, notes, and snippets.

@Pablissimo
Pablissimo / gist:5362966
Created April 11, 2013 12:23
Quick and dirty proxying of CloudTable
public class CloudTableProxy
{
CloudTable _table;
public CloudTableProxy(CloudTable table)
{
_table = table;
}
public virtual string Name { get { return _table.Name; } }
@Pablissimo
Pablissimo / gist:4658214
Created January 28, 2013 19:18
Mucking about with .NET in 10 spare minutes to emulate some of sometimes.rb's functionality in a horribly non-.NET way
using System;
namespace Sometimes
{
class Program
{
static void Main(string[] args)
{
// Farting about with a .NET-esque toy version of sometimes.rb...
5.To(10).Times(() => Console.WriteLine("This'll get annoying"));