I am using the Twilio.Twiml library for C# / .NET
I'd like to dial two numbers at the same time, e.g.,
<Response>
<Dial action="/callended" method="POST">
<Number>+12125551212</Number>
<Number>+12125553333</Number>
</Dial>
</Response>
How do I do that using the the library?
I see examples such as:
var response = new VoiceResponse();
response.Dial("+1-212-555-1212")
But I can't figure out the syntax for dialing more than one number with the same action.