zoukankan      html  css  js  c++  java
  • EV: .NET 学习

    1. Get location of the version of .NET and type of platform (e.g. 64 bit). A typical example, might be: C:WindowsMicrosoft.NETFrameworkv4.0.30319.

    In your C# application code, the following will return the location:
    System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory()

    More ...

     2. Syntax of type attribute in config file.

    type="<TypeFullName>, <AssemblyName>, <Other assembly properties>"

    --------------------------------------------------------------------

    <configuration>
        <system.codedom>
            <compilers>
                <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" compilerOptions="/optimize" warningLevel="1" />
            </compilers>
        </system.codedom>
    </configuration>

    --------------------------------------------------------------------

    More ...

  • 相关阅读:
    第三章感想
    第二章感想
    第一章感想
    第9章 硬件抽象层:HAL
    第10章 嵌入式linux的调试技术
    第8章 蜂鸣器驱动
    第七章 I/O
    第六章 编写Linux驱动程序
    第五章 S3C6410
    源代码的下载和编译
  • 原文地址:https://www.cnblogs.com/weihongji/p/4307515.html
Copyright © 2011-2022 走看看