var whatsaap = Android.Net.Uri.Parse(“smsto:” + number);
Intent i = new Intent(Intent.ActionSendto, whatsaap);
i.SetPackage(“com.whatsapp”);
StartActivity(Intent.CreateChooser(i, “”));
that is the simple code
Good luck
#untested yet
Sending message to specific whatsapp number using xamarin