VB.NET 在项目中添加App.config的配置

前端之家收集整理的这篇文章主要介绍了VB.NET 在项目中添加App.config的配置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
右击项目,选择属性,在属性中选择Settings选项卡,Scope选择User

这样就会在项目中添加了App.config配置

内容

<?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <!-- User application and configured property settings go here.--> <!-- Example: <add key="settingName" value="settingValue"/> --> <add key="XX" value="XX"></add> </appSettings> </configuration>

原文链接:https://www.f2er.com/vb/260516.html

猜你在找的VB相关文章