Как отправить изображение из памяти телефона в WhatsApp?
код отправки строки
private void Button1_Click(object sender, System.EventArgs e)
{
string phoneNumberWithCountryCode = "88167xxxxxxx";
string message = "Hallo";
StartActivity(new Intent(Intent.ActionView,
Uri.Parse("https://api.whatsapp.com/send?phone=" + phoneNumberWithCountryCode + "&text=" + message)));
}