Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add comments in App.config in Winform application [duplicate]

I'm developing a windows application with C# . I need to add some comments into Application settings ( App.config ) Here is my App.config

<connectionStrings>
    <add name="SLTBillConnectionString" connectionString="Data Source=DESKTOP-BIJLHTG\Yuresh_SQL;Initial Catalog=SLTBillPaymentDB;Integrated Security=True" providerName="System.Data.SqlClient" />
</connectionStrings>

<appSettings>
    <add key="ScheduledTimeForNewDay" value="09" />
    <add key="KioskCode" value="0001" />
    <add key="IsMobitelPaymentEnable" value="false" />
    <add key="MaxChequeAmount" value="500000" />
    <add key="MinChequeAmount" value="10" />
</appSettings>
like image 801
Yuresh Karunanayake Avatar asked Nov 06 '18 04:11

Yuresh Karunanayake


1 Answers

Same as HTML, try <!-- your comment -->

like image 62
Ivien Avatar answered Sep 25 '22 00:09

Ivien