gpt4 book ai didi

vb.net - 在 visual studio 的 F12 上使用 VB.net 转到元数据

转载 作者:行者123 更新时间:2023-12-02 04:53:15 25 4
gpt4 key购买 nike

使用 C# 进行开发时,您可以右键单击一个类,然后单击转到定义。如果该类是第 3 方代码(Microsoft 或其他 dll 引用),则会出现类元数据。 (或者你可以按 F12)。

在 VB.NET 中,出现了无用的对象浏览器窗口。有没有办法让它表现得像 C#?我只想显示元数据。对象浏览器不允许您像搜索纯文本文件(元数据)那样进行自由文本搜索。


例如,C# 元数据如下所示(使用 IEnumerable):

#region Assembly mscorlib.dll, v4.0.0.0
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\mscorlib.dll
#endregion

using System.Collections;

namespace System.Collections.Generic
{
// Summary:
// Exposes the enumerator, which supports a simple iteration over a collection
// of a specified type.
//
// Type parameters:
// T:
// The type of objects to enumerate.This type parameter is covariant. That is,
// you can use either the type you specified or any type that is more derived.
// For more information about covariance and contravariance, see Covariance
// and Contravariance in Generics.
public interface IEnumerable<out T> : IEnumerable
{
// Summary:
// Returns an enumerator that iterates through the collection.
//
// Returns:
// A System.Collections.Generic.IEnumerator<T> that can be used to iterate through
// the collection.
IEnumerator<T> GetEnumerator();
}
}

在 VB.Net 中,F12 键将调出对象浏览器:

object browser

最佳答案

如果第 3 方代码是用 C# 编写的,而您的代码是用 vb.net 编写的,则 VS 无法向您显示定义。这是多次报告的错误 - 似乎“元数据”功能或“转到定义”功能仅适用于纯 C# 或纯 VB.NET 项目

see this post

关于vb.net - 在 visual studio 的 F12 上使用 VB.net 转到元数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25793418/

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