240 发简信
IP属地:香港
  • static function

    static keyword makes a function could only be seen in its own translatio...

  • Hiding variable and function names with static

    C programmers use the static attribute to hide variable and function dec...

  • CLR IL JIT

    CLR: Common Language Runtime IL: Intermediate Language JIT: Just-in-time...

  • CLR on 32/64bit Windows

    大多数情况下,如果程序集文件只包含类型安全的托管代码,则代码在32位和64位Windows上都能正常工作。编译好的托管EXE/DLL文件由主机上...

  • Dispose Pattern

    we use different dispose pattern in different situations. Basic Dispose ...

  • The House Was Quiet and The World Was Calm

    The house was quiet and the world was calm.The reader became the book; a...

  • C# Struct

    Structs cannot inherit from other structs or classes. Both classes and s...

  • System.IO.StreamWriter没有Finalizer

    System.IO.FileStream可以将字节写入文件,该类有内存缓存 System.IO.StreamWriter可以写字符或字符串,也有...