Si hallas algún error en tu código o proyecto, recuerda probar siempre en un entorno de testing antes añadir el código al trabajo final.
Ejemplo 1: c# String.Concat()
string first ="hello_";string second ="world";/* Unite multiple strings to one new string*/string third = String.Concat(first, second);// string third will be now "hello_world"
Ejemplo 2: c# string concatenación
string userName ="" ;string dateString = DateTime.Today.ToShortDateString();// Use the + and += operators for one-time concatenations.string str ="Hello "+ userName +". Today is "+ dateString +".";
System.Console.WriteLine(str);
str +=" How are you today?";
System.Console.WriteLine(str);
Ejemplo 3: c# Agregar o concatenar cadenas en C#
string str1 ="ppp";string strRes = str1.Insert(2,"bbb");
Console.WriteLine(strRes.ToString());
Recuerda que te permitimos aclarar tu experiencia si te ayudó.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)