从 strava 参考https://developers.strava.com/docs/reference/#api-Clubs-getClubMembersById
我正在尝试在 C# 中使用 strava API。
我在 Concole App(Microsoft Visual Studio Community 2019 上的 .NET Framework 4.6.1)上安装了 Strava.NET v3.4.4,如下图所示。
我刚刚添加了 strava 参考作为上面的链接。
代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using com.strava.api.v3.Api;
using com.strava.api.v3.Client;
using com.strava.api.v3.Model;
namespace getClubMembersById
{
class Program
{
static void Main(string[] args)
{
}
}
}
错误:
The type or namespace name 'com' could not be found (are you missing a using directive or an assembly reference?)