gpt4 book ai didi

c# - 谁能在没有代码主体的情况下解释这个类构造函数?

转载 作者:行者123 更新时间:2023-12-02 09:25:50 26 4
gpt4 key购买 nike

更多的是为什么而不是如何,但是这怎么可能,因为我的印象是所有构造函数都需要一个代码块 - 即使其中没​​有任何内容?

以下代码直接取自类定义

AspNet.Identity.EntityFramework.IdentityUser

IdentityUser 类的构造函数在定义中没有代码块?谁能解释一下吗?

public class IdentityUser : IdentityUser<string, IdentityUserLogin, IdentityUserRole, IdentityUserClaim>, IUser, IUser<string>
{
//
// Summary:
// Constructor which creates a new Guid for the Id
public IdentityUser();

//
// Summary:
// Constructor that takes a userName
public IdentityUser(string userName);
}

最佳答案

这是由 Visual Studio 的“转到定义”服务从程序集元数据生成的假代码。

它不是真正的代码,实际上不会编译。

您可以在"file"顶部的注释中看到这一点。

关于c# - 谁能在没有代码主体的情况下解释这个类构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44769307/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com