I use this code to send a Message to WhatsApp:
string phoneNumberWithCountryCode = "+20>>>>>>>>";
string message = "Test Program \n Test Program \n Test";;
StartActivity(new Intent(Intent.ActionView,
Android.Net.Uri.Parse(
"https://api.whatsapp.com/send?phone=" + phoneNumberWithCountryCode + "&text=" + message)));
It seems ok, but the message isn't send to a receiver. Instead, it is being sent to the WhatsApp textbox and I need to press Go or Enter to send the Message. How do I write 'Press go' or 'Enter' in my code to send it directly? I need Send Key like C#.