how to declare a string c#
string MyString = "Your string in here";
how to declare a string c#
string MyString = "Your string in here";
c# write variable in string
int age = 22;
Console.WriteLine($"Age: {age}");
c# string methods
string string1 = "Today is " + DateTime.Now.ToString("D") + ".";
Console.WriteLine(string1);
string string2 = "This is one sentence. " + "This is a second. ";
string2 += "This is a third sentence.";
Console.WriteLine(string2);
c# $ string
string color = blue;
// Both versions do the same thing.
Console.WriteLine("The sky is " + color);
Console.WriteLine($"The sky is {color}");
//Note the dollar ^sign and ^curly^ brackets.
C# string
string str1 = "Blue";
string str2 = "Duck";
//returns length of string
str1.Length;
//Make clone of string.
str2 = str1.Clone();
//checks whether specified character or string is exists or not
//in the string value.
str2.Contains(“hack”);
//checks whether specified character is
//the last character of string or not.
str2.EndsWith(“io”);
//compares two string and returns Boolean value true
//as output if they are equal, false if not
str2.Equals(str1);
//Returns the index position of first occurrence of specified character.
str1.IndexOf(“:”);
//Converts String into lower case based on rules of the current culture.
str1.ToLower();
//Converts String into Upper case based on rules of the current culture.
str1.ToUpper();
//Insert the string or character in the string at the specified position.
str1.Insert(0, “Welcome”);
//Returns the index position of last occurrence of specified character.
str1.LastIndexOf(“T”);
//deletes all the characters from beginning to specified index position
str1.Remove(i);
//replaces the specified character with another
str1.Replace(‘a’, ‘e’);
//This method splits the string based on specified value.
string[] strArray = str1.Split(“/”);
//This method returns substring.
str1.Substring(startIndex , endIndex);
//It removes extra whitespaces from beginning and ending of string.
str1.Trim();
//returns HashValue of specified string.
str1.GetHashCode();
//This is not an exhaustive list.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us