Хочу написать бота с приемом оплаты проблемы пошли уже с самого начала int amount = 0; try { amount = int.Parse(e.Message.Text); } catch (Exception ex) { await bot.SendTextMessageAsync(e.Message.Chat.Id, "Введите число"); Console.WriteLine(ex.Message); return; } await bot.SendInvoiceAsync( chatId: e.Message.Chat.Id, title: "PayStars", description: "payStars to X parser bot", payload: Guid.NewGuid().ToString(), providerToken: "STARS", currency: "XTR", prices: new[] { new LabeledPrice($"Pay {amount}", amount) }, startParameter: "start_parameter" ); CSHARP int amount = 0; try { amount = int.Parse(e.Message.Text); } catch (Exception ex) { await bot.SendTextMessageAsync(e.Message.Chat.Id, "Введите число"); Console.WriteLine(ex.Message); return; } await bot.SendInvoiceAsync( chatId: e.Message.Chat.Id, title: "PayStars", description: "payStars to X parser bot", payload: Guid.NewGuid().ToString(), providerToken: "STARS", currency: "XTR", prices: new[] { new LabeledPrice($"Pay {amount}", amount) }, startParameter: "start_parameter" ); Создается сообщение но я не могу его оплатить... Почему так заранее спасибо