Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,151 questions

40,705 answers

573 users

How to remove character from string at specific index in C#

1 Answer

0 votes
using System;
					
public class Program
{
	public static void Main()
	{
		string s = "C# is a general-purpose, multi-paradigm programming language";

		Console.WriteLine(s);

		s = s.Remove(8, 1);

        Console.WriteLine(s);
	}
}




/*
run:

C# is a general-purpose, multi-paradigm programming language
C# is a eneral-purpose, multi-paradigm programming language

*/

 





answered May 9, 2020 by avibootz

Related questions

1 answer 77 views
3 answers 116 views
1 answer 34 views
1 answer 71 views
...