2020年3月10日

C#第五节

摘要: 1、具有入口点 (entry point) 的程序集称为应用程序 (application),应用程序运行时,将创建新的 应用程序域(application domain)。同一台计算机上可能会同时运行着同一个应用程序的若干个实例,此时,每一个 实例都拥有各自的应用程序域。 #此入口点方法总是被命名 阅读全文

posted @ 2020-03-10 21:32 HelloOcean 阅读(137) 评论(0) 推荐(0)

C#第四节

摘要: 1、字符串 常规字符串 (regular string literal) 和 原义字符串 (verbatim string literal)。 原意字符串是带有@ string c = "hello \t world"; // hello world string d = @"hello \t wo 阅读全文

posted @ 2020-03-10 17:00 HelloOcean 阅读(187) 评论(0) 推荐(0)

C#类的成员

摘要: 类 (class) 是最基础的 C# 类型。类是一个数据结构,将状态(字段)和操作(方法和其他函数成员)组 合在一个单元中。类为动态创建的类 实例 (instance) 提供了定义,实例也称为 对象 (object)。类支持 继承 (inheritance) 和 多态性 (polymorphism) 阅读全文

posted @ 2020-03-10 16:24 HelloOcean 阅读(304) 评论(0) 推荐(0)

导航