I need to take the 2 first Numbers on variable Postal. I use substring but is not corectly
var yourText = project.Variables["Postal"].Value;
return project.Variables["departement"].Substring(0,2);
How to make this ?
var yourText = project.Variables["Postal"].Value;
return project.Variables["departement"].Substring(0,2);
How to make this ?