反编译工具

https://blog.csdn.net/kongwei521/article/details/54927689

  • dotPeek

    • 好用,免费
    • 在线源码支持
  • .Net Reflector
  • ILSpy/dnSpy

    • dnSpy 报病毒

String 类型

System.String

  • 两种格式

    • "a string"

      • ""
    • @"a string, c:home"

      • @""
      • 相当于其它语言 r"a string c:home"
      • 不把 "\" 当成转义符,而是普通字符
      • crude string
      • 支持换行,类似 python """ a string """, doc string