How many ways to remove Last character from String in Dot Net?

 Posted by vishalneeraj-24503 on 11/26/2013 | Category: VB.NET Interview questions | Views: 5804 | Points: 40
Select from following answers:
  1. str.TrimEnd(",")
  2. str.Substring(0, str1.LastIndexOf(","))
  3. str.Remove(str1.Length - 1)
  4. All of the bove
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response