Nuget에 있는 Telegram.Bot 은 닷넷 4.6 이상 지원이 된다. 그래서, 닷넷4 에서는 사용할수 없다. 그래서 좀 불편하지만, 텔레그램 URL을 직접 호출해주는 식으로 구현을 한 소스를 남겨둔다. 필요하신분 테스트해보시길.. using System.Web; // HttpUtility using System.Net; // WebClient string apikey_발신로봇 = "~~~~"; // 발신로봇의 api-key string chatid_수신자 = "~~~~"; // 수신자의 chat-id string message = HttpUtility.UrlEncode(msg.Replace("\r\n", "\n").Replace("\\n", "\n")); string url = $"https:..