All pastes #2047669 Raw Edit

Miscellany

public text v1 · immutable
#2047669 ·published 2011-04-18 08:25 UTC
rendered paste body
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Libmpc;

namespace MPDClient
{    
    class MPDClient
    {

        Client c;

        public MPDClient()
        {
            c = new Mpc();
        }
    }
}