What will be the output of the above code?
String str1 = Lets learn programming in C#;
String str2;
str2 = str1.Substring(5,10);
Console.WriteLine(str2);
Reveal answer
Fill a bubble to check yourself
What will be the output of the above code?
String str1 = Lets learn programming in C#;
String str2;
str2 = str1.Substring(5,10);
Console.WriteLine(str2);