Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Threading.Tasks;
- using PSN;
- namespace ConsoleApplication1
- {
- class Program
- {
- static async void login()
- {
- OAuthTokens tokens = await auth.Make();
- Console.WriteLine(tokens.Authorization);
- }
- static void Main(string[] args)
- {
- Task task = new Task(login);
- task.Start();
- task.Wait();
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement