Miscellany
public text v1 · immutableusing 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();
}
}
}