gpt4 book ai didi

c# - 如何公开 C# "using"别名以避免 "inconsistent accessibility"错误?

转载 作者:行者123 更新时间:2023-11-30 20:59:07 24 4
gpt4 key购买 nike

我有一个 C# 类,它使用 using 关键字为一些公共(public)属性定义了一些别名。这会导致“不一致的可访问性”编译器错误,因为显然别名定义的类型不是公开的。我怎样才能使别名定义的类型也公开以便错误消失?

// Alias defined at the top of the source file just below the other "using"
// "using" statements that bring in the needed modules.
using TDynamicStringArray = System.Collections.Generic.List<string>;

// Public property defined with the type alias.
public TDynamicStringArray Strs
{
...
}

这是从编译器收到的错误:

Error   2   Inconsistent accessibility: property type 'TDynamicStringArray' is less accessible than property 'Strs'

我尝试将 public 放在 using 前面,但这不起作用。我查看了其他几个关于“不一致的可访问性”主题的 SO 线程,但没有看到任何处理使用 using 关键字创建的类型别名的线程。

我使用别名的原因是因为我正在从另一种语言转换一些旧代码,它简化了转换过程。否则,我将只使用不带别名的基础类型。

最佳答案

不,您不能通过任何其他机制更改类型的可访问性,只能更改类型本身。

如果您无法修改该类型的源代码,您唯一的选择就是将其包装在您的自定义公共(public)类型中。

关于c# - 如何公开 C# "using"别名以避免 "inconsistent accessibility"错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15604513/

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