Visual Studio 2005を使用していて、「App.config」ファイルで1つのアプリケーションを作成しました。 私はそのファイルをApp.configファイルに新しい値を編集して追加しようとしたとき、それはエラーを示して私を助けてください..CでApp.configファイルを構成する方法
私のapp.configファイルには含まれています
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="keyvalue" value="value"/>
<add key="keyvalue1" value="value1"/>
</appSettings>
<mySettings>
<add name="myname" myvalue="value1"/>
</mySettings>
</configuration>
それはようなエラーが表示されます。
Could not find schema information for the element "mySettings"
Could not find schema information for the element "add"
Could not find schema information for the element "myvalue"
これらの「エラー」は単なる情報メッセージです。 Visual Studioは、これらの値が要素、属性、格納される予定の型であると想定されているとうまくいかないことを知らせるだけです。これらを無視することは安全ですが、提供された回答は、これらのカスタム値の読み込みを実装する方法に関するガイダンスを提供します。 –