All pastes #2047674 Raw Edit

Miscellany

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

namespace MPDClient
{    
    class MPDClient
    {
        //jeg har sat private på her
        private Mpc c;

        public MPDClient()
        {
            //her mangler du this foran c
            this.c = new Mpc();
        }
    }
}