I want to create a google translator link, that depends on my input. To make things clearer, here my "dynamic link":
private static string _GoogleLink = $"https://translate.google.com/?hl=de#{_SourceLanguage}/{_TargetLanguage}/{_SourceInput}"
I think it´s clear what i try to do, but the link doesn´t work this way, it just enters
https://translate.google.com/?hl=de#//
in my browser. I execute the link with this method:
public static void Translate(string input, string sourceLang, string targetLang)
{
_SourceInput = input;
_TargetLanguage = targetLang;
_SourceLanguage = sourceLang;
System.Diagnostics.Process.Start(_GoogleLink);
}