主页 > 知识库 > asp.net中引用同一个项目中的类库 避免goToDefinition时不能到达真正的定义类

asp.net中引用同一个项目中的类库 避免goToDefinition时不能到达真正的定义类

热门标签:服务器配置 电子围栏 Mysql连接数设置 团购网站 Linux服务器 科大讯飞语音识别系统 阿里云 银行业务
新建一个解决方案: Api
添加类库 APi.Data
APi.Data 新建一个 Entity
复制代码 代码如下:

public class Entity
{
private int id;
public int Id
{
get { return id; }
set { id = value; }
}
private string name;
public string Name
{
get { return name; }
set { name = value; }
}
}

添加类库 APi.Web
引用 APi.Data.dll
APi.Web下
APi.Data.Entity t = new APi.Data.Entity();
Entity的goToDefinition
结果是:
复制代码 代码如下:

using System;
namespace APi.Data
{
public class Entity
{
public Entity();
public int Id { get; set; }
public string Name { get; set; }
}
}

而不是:
复制代码 代码如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Api.Data
{
public class Entity
{
private int id;
public int Id
{
get { return id; }
set { id = value; }
}
private string name;
public string Name
{
get { return name; }
set { name = value; }
}
}
}
您可能感兴趣的文章:
  • go语言的初始化顺序,包,变量,init详解
  • Go语言init函数详解
  • 详解Angular之constructor和ngOnInit差异及适用场景
  • 详解Angular 中 ngOnInit 和 constructor 使用场景
  • 为什么不建议在go项目中使用init()

标签:江苏 蚌埠 衡水 枣庄 衢州 大理 广元 萍乡

巨人网络通讯声明:本文标题《asp.net中引用同一个项目中的类库 避免goToDefinition时不能到达真正的定义类》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266