使用我们的硬件供应商最近购买的dll(用于.NET sdk)。他们提供了所有类,方法等的体面文档。但他们所有的例子都在C#中。我不熟悉C#,正在努力将所有内容翻译成PowerShell。我已经取得了一些进展,但已经碰壁了,我正在寻求帮助。
以下是他们在C#中的示例:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Vendor.Components.Flashlight.Sdk.Examples
{
class MyApp
{
public void Execute()
{
var device = new FlashlightController();
device.Light(FlashlightColor.Green);
}
}
}
到目前为止,这是我在PowerShell中的位置(如果有更有说服力的方式,请随时告诉我):
## Vendor DLL path
$assemblyFlashlight = 'C:\FlashlightDLL\Flashlight.Sdk.dll'
## Adding new assembly as a Type and listing members
$typeFlashLight = Add-Type -Path $assemblyFlashlight -PassThru
$typeFlashlight
IsPublic IsSerial Name BaseType
-------- -------- ---- --------
True False DotfuscatorAttribute System.Attribute
True False BusylightController System.Object
True True BusylightSoundClip System.Enum
True True BusylightVolume System.Enum
True False BusylightColor System.Object
False False b System.Object
False False c System.Object
False False e System.Object
False False f System.Object
False False d System.Object
False False i System.ValueType
False False a System.ValueType
False False g System.Object
False False h System.ValueType
False True d System.MulticastDelegate
False False b System.ValueType
False False e System.Object
False False c System.Object
False False f System.Object
False False a d
False False a System.Object
## Creating objects
$objController = New-Object $typeFlashLight[1]
$objSoundClip = New-Object $typeFlashLight[2]
$objVolume = New-Object $typeFlashLight[3]
$objColor = New-Object $typeFlashLight[4]
上面的PowerShell代码运行时没有错误,所有$ obj变量都包含预期的成员:
$objColor|Get-Member
Name MemberType Definition
---- ---------- ----------
Equals Method bool Equals(System.Object obj)
GetHashCode Method int GetHashCode()
GetType Method type GetType()
ToString Method string ToString()
BlueRgbValue Property int BlueRgbValue {get;set;}
GreenRgbValue Property int GreenRgbValue {get;set;}
RedRgbValue Property int RedRgbValue {get;set;}
所以我认为我走在正确的轨道上。但我无法弄清楚如何翻译某些东西,比如'IsPublic','IsSerial',而我在'Dotfuscator'上的研究并没有给我任何我能消化的东西。
答案 0 :(得分:2)
IsPublic和IsSerial不是您要实现的属性。它们是System.RuntimeType的属性,其中有一个与.NET中的每个类型相关联。试试这个:
$objColor.GetType()
至于将C#转换为PowerShell,请记住,并不总是有100%的映射。也就是说,在PowerShell中,您不能创建类或接口,更不能创建从其他类型派生的类型。在CLI中,PowerShell更像是一种消费者语言,而不是一种生产者语言。大多数情况下,基本实用程序库不是问题。但是,如果该库实际上是一个需要您从其基类或接口继承的框架,那么您将无法使用PowerShell。