If you want to remove any first and last character from the string, then use Substring as suggested by Anish, but if you just want to remove quotes from beginning and the end, just use
myStr = myStr.Trim('"');
Note: This will remove all leading and trailing occurrences of quotes (docs).