I have a path that is named defaultPath I want to add it into this verbatim string literal but can quite get the quotes around it.
    @"""C:\Mavro\MavBridge\Server\MavBridgeService.exe"" /service /data ""..\Data"""
I was trying to add +defaultPath to replace Data. So lets say I have a folder name Data.Apple I want the output to be
   "C:\Mavro\MavBridge\Server\MavBridgeService.exe" /service /data "..\Data.Apple"
But when I have been doing it for the past half hour I have been getting
   "C:\Mavro\MavBridge\Server\MavBridgeService.exe" /service /data "..\"Data.Apple
or
   "C:\Mavro\MavBridge\Server\MavBridgeService.exe" /service /data "..\" + defaultPath
 
     
     
     
    