So I have this piece of text that I need to be on a string so I can later add to a text file and should be like this string
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
<requiredRuntime version="v4.0.20506" />
</startup>
I've tried to verbate it like
@"""<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
<requiredRuntime version="v4.0.20506" />
</startup>"""
and also tried to work with concatenatio but I can't see to figure out how to include every quote to be on that string.