Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这种方法签名是什么意思
public partial class Entities : Entity.ObjectContext<Entities>
我知道冒号 (:) 继承自之后的任何内容,但是
<Entities>
意思是?
它是某种通用的吗?
这不是方法签名,而是(部分)类声明。
“部分”表示类的其余部分可以在一个或多个单独的文件中定义。部分类在进行代码生成时特别有用(例如,WinForms 设计器使用它们将生成的代码与用户代码分开)。您展示的具体示例来自实体框架。
该<Entities>部分意味着这是一个通用函数。