Я добавил MIDI.dll в свойство сборки, я новичок в C # и, следуя примеру с MIDI.dot.net, получил эту ошибку на device.Spec
, что означает Midi.InputDevice, что не содержит определения для 'spec 'и никакой метод расширения' spec ', принимающий первый аргумент типа Midi.InputDevice не может быть найден (вам не хватает директивы using ...)?
My using MIDI
существует сверху, и яиспользуйте MonoDevelop IDE.
public override void Run()
{
// Print a table of the input device names, or "No input devices" if there are none.
if (InputDevice.InstalledDevices.Count == 0)
{
Console.WriteLine("No input devices.");
}
else
{
Console.WriteLine("Input Devices:");
foreach (InputDevice device in InputDevice.InstalledDevices)
{
Console.WriteLine(" {0}", device.Spec);
}
}
Console.WriteLine();
// Print a table of the output device names, or "No output devices" if there are none.
if (OutputDevice.InstalledDevices.Count == 0)
{
Console.WriteLine("No output devices.");
}
else
{