1.

Solve : How Do I change one letter in one string mulitiple times? Help??

Answer»

Ok for thoes that don't UNDERSTAND the title I want to do this...

Nvm I looked on google for an hour and a half and found a really easy way of doing it I hope this will HELP other people with questions like me =D

using System;

public class EXAMPLE
{
public static void Main()
{
STRING Word = "Hello how";
string Words = "Hre You TodHy?";
//Easy Way
string TransWords = Words.Replace("H", "A");
//Easy Way
string Sentence = Word + TransWords;
Console.WriteLine(Sentence);
Console.ReadLine();
}
}

What would I put for the Code?
SOLVED



Discussion

No Comment Found