Choose Category
using System;using System.Text; namespace forgetCode{ class program { public static void Main() { StringBuilder sb1 = new StringBuilder("Time is gold"); int iLength = sb1.Length; Console.WriteLine(iLength); } }}