using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main()
{
String str1 = "This is a sample string"; ;
String str2;
str2 = str1.PadRight(30, '#');
Console.WriteLine("String after right padding:(" + str2+")");
}
}
}
Output
String after right padding:(This is a sample string#######)
In above program we used ‘#’ character to pad string from right side, and string length after padding will be 30 characters.
Consider the program:
Output
In above program we used ‘#’ character to pad string from right side, and string length after padding will be 30 characters.
need an explanation for this answer? contact us directly to get an explanation for this answer