Доброе время суток, Хотел создать Бота для телеграмма, но подключение к боту не происходит. Вот сообственно код.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Telegram.Bot;
using Telegram.Bot.Args;
namespace WindowsFormsApplication6
{
public partial class Form1 : Form
{
static ITelegramBotClient botClient;
public Form1()
{
InitializeComponent();
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
botClient = new TelegramBotClient("1482817782:AAHrDRmSl9U8ck7OXHKQPSF636bgsLXv-YU");
var me = botClient.GetMeAsync().Result;
Console.WriteLine($"Hello, World! I am user {me.Id} and my name is {me.FirstName}.");
botClient.OnMessage += Bot_OnMessage;
botClient.StartReceiving();
}
static async void Bot_OnMessage(object sender, MessageEventArgs e)
{
if (e.Message.Text != null)
{
Console.WriteLine($"Received a text message in chat {e.Message.Chat.Id}.");
await botClient.SendTextMessageAsync(
chatId: e.Message.Chat,
text: "You said:\n" + e.Message.Text
);
}
}
}
}
Айфон мало держит заряд, разбираемся с проблемой вместе с AppLab
Visual Studio выдает ошибку Exception: SystemException: и пишет что ошибка в 1 строке, а на первой строке у меня using System
Есть datagridviewВ последних колонках DataGridViewButtonColumn
В общем, задача такаяПри нажатии на ярлык стимовской игры steam://run/12345 нужно сделать чтобы включался Steam собственно и после запускалось другое...
Идея для проекта-чат_бота следующая: Создать несколько классов-модулей, которые не зависят друг от друга (по типу один для обработки команд,...