gpt4 book ai didi

c# - 如何判断给定的类属于哪个命名空间?

转载 作者:行者123 更新时间:2023-12-04 16:57:16 26 4
gpt4 key购买 nike

我经常会在网上找到我想要使用的代码 fragment ,但该 fragment 没有提供我需要的必要导入(C# 中的“使用”),所以我剩下另一个搜索任务试图找出类/变量类型属于哪个命名空间。这个问题只发生在我在 Visual Studio C# 中用 Xamarin 编程 Android 时,因为我看不到 android 文档在哪里显示了这个信息。 (如果我用普通的 C# 编程,那么 MSDN 文档非常清楚每个类所属的命名空间。)

这是一个例子。我找到了我想使用的以下代码:

Configuration configuration = yourActivity.getResources().getConfiguration();
int screenWidthDp = configuration.screenWidthDp; //The current width of the available screen space, in dp units, corresponding to screen width resource qualifier.
int smallestScreenWidthDp = configuration.smallestScreenWidthDp; //The smallest screen size an application will see in normal operation, corresponding to smallest screen width resource qualifier.

回答者甚至给出了 Android 文档的链接:
http://developer.android.com/reference/android/content/res/Configuration.html#screenWidthDp

但是在 VS 中,我收到一条错误消息:“找不到类型或命名空间名称‘配置’(您是否缺少 using 指令或程序集引用?)

嗯,是的,我缺少 using 指令,但是有什么方法可以找出我缺少的命名空间的名称?同样,如果它是一个普通的 .Net 类,我没有问题,这只会发生在 Xamarin/VS 中的 Android 类中,因为我没有在 Android 文档中找到我需要的东西。有人可以指点我吗?

最佳答案

通常,我在一个类上按 F1 来查找它的在线文档。在 Android 类(class)上试一试

您还可以在 Xamarin page 中找到所需的文档。微软的。
您还可以在此页面中搜索您将来可能需要的任何其他类(class)。

关于c# - 如何判断给定的类属于哪个命名空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47460557/

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