- 在C#中,如果有一个方法我们不想继续使用,需要废弃的时候,可以在该方法前面加上一个[Obsolete]。
- string[] arr={"a","b"}
-
if $(ConfigurationName)==Release copy /y $(TargetPath) E:DevelopCommonDll
if $(ConfigurationName)==Release copy /y $(TargetDir)LZL.XML E:DevelopCommonDl - vs 事件命令不要加"",会报错;
-
[Conditional("DEBUG")]
internal static void Log(object obj)
{} - vs发布网站时,报cs0006错误,切换成Release编译一下
- C#交互窗口可以直接运行C#代码,打开方式:视图》其他窗口》C#交互
-
<configSections>
<sectionGroup name="common">
<section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" requirePermission="false" />
</sectionGroup>
<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" />
<section name="SingleTagSectionTest" type="System.Configuration.SingleTagSectionHandler" />
<section name="DictionarySectionTest" type="System.Configuration.DictionarySectionHandler" />
<section name="NameValueSectionTest" type="System.Configuration.NameValueSectionHandler" />
</configSections>