using System;
using System.Text;
public class Program
{
public static void Main()
StringBuilder sb = new StringBuilder("Hi, Pirzada");
Console.WriteLine(sb.Length); // length before clear is 11
sb.Clear();
Console.WriteLine(sb.Length); // length after clear is 0
}