This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Net; | |
using static System.Console; | |
public static class Program | |
{ | |
static void Main() | |
{ | |
WebClient client = new WebClient (); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Google.Apis.Auth.OAuth2; // Google.Apis.Auth --version 1.30.0 | |
using Google.Cloud.Storage.V1; // Google.Cloud.Storage.V1 | |
using System; | |
using System.IO; | |
using System.Runtime.InteropServices; | |
using static System.Console; | |
public static class Program | |
{ | |
public static void Main(string[] args) |
NewerOlder