Skip to content

Instantly share code, notes, and snippets.

@EvanSnapp
EvanSnapp / githubClient.cs
Last active September 5, 2024 13:55
C# use the github api to read files out of a directory
namespace GithubClient
{
//JSON parsing methods
struct LinkFields {
public String self;
}
struct FileInfo{
public String name;
public String type;
public String download_url;