So this is an error I've been trying to figure out but can not seem to fix. . This is in one function.
File.Copy(item.FileName, mcAD [VersionText.Tag], true);
private void Version_2_0_Click(object sender, EventArgs e)
{
string Version_2_0_Selected = VersionText.Text = "Version 2.0";
VersionText.Tag = 2;
}
But VersionText.Tag in the first part always gives me this error.

I heard something with int.TryParse, but I can not figure out how to implement it into my code.
I hope I explained it enough.
string Version_2_0_Selected = VersionText.Text = "Version 2.0";