thisDate1.ToString("MMMM dd, yyyy")
Edit:
Since your variables are string:
DateTime.ParseExact(stringDate, "yyyy-MM-dd", CultureInfo.InvariantCulture).ToString("MMMM dd, yyyy");
That would give you the conversion of formats from your string datetime to the one you want.