mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
12 lines
No EOL
199 B
C#
12 lines
No EOL
199 B
C#
using System;
|
|
using VkNet.Shared;
|
|
|
|
var api = Api.GetInstance();
|
|
|
|
api.Auth();
|
|
Console.WriteLine(api.Token);
|
|
var res = api.Groups.Get(new());
|
|
|
|
Console.WriteLine(res.TotalCount);
|
|
|
|
Console.ReadLine(); |