如何使用 LabVIEW .NET 构造函数节点在 Grpc.Core.Api.dll 中创建 Channel Credentials 对象?
How to create the Channel Credentials object in Grpc.Core.Api.dll using LabVIEW .NET constructor Node?
我尝试使用 Grpc.Core.Api.dll,使用 LabVIEW .NET 构造函数节点从 C# nu get 包构建通道凭据,但它抛出一个错误,提示“无法为抽象创建实例 class。
如何解决它以便我可以在 LabVIEW 中为 gRPC 设置通道凭据
您正在尝试创建 ABSTRACT class 对象的实例。来自 windows C# guides:
The abstract keyword enables you to create classes and class members that are incomplete and must be implemented in a derived class.
因此,您试图通过构造函数节点创建的不是一个完全形成的对象,而是一个其他 classes 可以构建的框架。
我尝试使用 Grpc.Core.Api.dll,使用 LabVIEW .NET 构造函数节点从 C# nu get 包构建通道凭据,但它抛出一个错误,提示“无法为抽象创建实例 class。 如何解决它以便我可以在 LabVIEW 中为 gRPC 设置通道凭据
您正在尝试创建 ABSTRACT class 对象的实例。来自 windows C# guides:
The abstract keyword enables you to create classes and class members that are incomplete and must be implemented in a derived class.
因此,您试图通过构造函数节点创建的不是一个完全形成的对象,而是一个其他 classes 可以构建的框架。