// Install the C# / .NET helper library from twilio.com/docs/csharp/install using System; using Twilio; using Twilio.Rest.Api.V2010.Account; class Program { static void Main(string[] args) { // Find your Account Sid and Token at twilio.com/console // DANGER! This is insecure. See http://twil.io/secure const string accountSid = "アカウントID"; const string authToken = "トークン"; TwilioClient.Init(accountSid, authToken); var call = CallResource.Create( twiml: "Ahoy, World!", to: new Twilio.Types.PhoneNumber("受信者電話番号"), from: new Twilio.Types.PhoneNumber("送信者電話番号") ); Console.WriteLine(call.Sid); } }