Visual Studio 2010을 사용하고 있으며 API를 처음 사용합니다. Last.FM API를 사용하려고하면 "유형 또는 네임 스페이스 이름 'Lastfm'을 찾을 수 없습니다 ..."10 및 48 줄입니다. 비슷한 주제에 대해 다른 StackOverflow 질문을 살펴 보았습니다. 아무도 직접 신청하는 것 같지 않았습니다.네임 스페이스 이름 'Lastfm'을 (를) 찾을 수 없습니다.
http://code.google.com/p/lastfm-sharp/downloads/list에서 lastfm-sharp.dll을 다운로드하여 프로젝트 폴더에 저장했습니다. 그런 다음 참조로 추가하고 다른 작업을 리콜하지 마십시오. 그런 다음 http://code.google.com/p/lastfm-sharp/wiki/Examples의 예제를 사용하여 코드를 작성했습니다. 당신이 제공 할 수있는 어떤 도움
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Lastfm.Services;
namespace MusicOrganize
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
DIRECTORY = this.FilePath.Text;
}
private void FilePath_TextChanged(object sender, EventArgs e)
{
DIRECTORY = this.FilePath.Text;
}
//Choose what Folder to work with
private void BrowseBtn_Click(object sender, EventArgs e)
{
if (folderBrowserDialog1.ShowDialog() == DialogResult.OK)
{
this.FilePath.Text = folderBrowserDialog1.SelectedPath;
}
}
//Organize Music in selected Directory
private void OrganizeBtn_Click(object sender, EventArgs e)
{
//Put all tracks into one folder
Music.Consolidate(DIRECTORY);
string API_KEY = "****";
string API_SECRET = "****";
Session session = new Session(API_KEY, API_SECRET);
Music.GetTrackTags();
}
public string DIRECTORY;
}
}
감사 :
여기 내 코드입니다.
Lastfm.dll의 참조를 업데이트하려고합니까? – bystander