Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/cplusplus/132.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
can';不要从Powershell 3.0调用C#类_C#_Powershell - Fatal编程技术网

can';不要从Powershell 3.0调用C#类

can';不要从Powershell 3.0调用C#类,c#,powershell,C#,Powershell,我创建了一个简单的C#类来学习如何从powershell脚本调用C#类。我将该项目编译为“类库”,并复制到我的C:\驱动器上 谷歌搜索发现,我们需要使用以下命令向powershell注册该.DLL PS C:\WINDOWS\system32> [Reflecion.Assembly]::LoadFile("C:\Calculator.dll") PS C:\WINDOWS\system32> $ml = new-object Calculator() At lin

我创建了一个简单的C#类来学习如何从powershell脚本调用C#类。我将该项目编译为“类库”,并复制到我的C:\驱动器上

谷歌搜索发现,我们需要使用以下命令向powershell注册该.DLL

 PS C:\WINDOWS\system32> [Reflecion.Assembly]::LoadFile("C:\Calculator.dll")

PS C:\WINDOWS\system32> $ml = new-object Calculator()
       At line:1 char:29
      + $ml = new-object Calculator()
       +                             ~
   An expression was expected after '('.
+ CategoryInfo          : ParserError: (:) [], 
 ParentContainsErrorRecordException
   + FullyQualifiedErrorId : ExpectedExpression
我没有收到任何错误后,该命令。 当我尝试像这样访问类时,我得到一个错误。 powershell新手。有什么建议吗?谢谢

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;


namespace Calculator
{
    public class Calculator
    {
    #region "Private Data Members"

        private int _operandA;
        private int _operandB;

    #endregion "Private Data Members"

        public int OperandA
        {
            get { return _operandA; }
            set { _operandA = value; }
        }     

        public int OperandB
        {
            get { return _operandB; }
            set { _operandB = value; }
        }

        public void AddNumbers(int a, int b)
        {
            int c;
            c = a + b;
            MessageBox.Show("The addition of 2 operands is c");
        } 
    }
}

您不需要使用
()
进行实例化,还需要限定在其中定义类的命名空间

PS> [Reflection.Assembly]::LoadFile("C:\Calculator.dll")
PS> $ml = new-object Calculator.Calculator

您应该添加类型,然后创建新对象。 根据您的C#,您的命名空间是Calculator,您需要从该命名空间调用该类。请确保向新对象添加另一个计算器

Add-Type -Path 'C:\Calculator'
New-Object Calculator.Calculator
一个有效的例子是

Add-Type -Path 'C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5\System.Management.dll'
$Management = new-object System.Management.Instrumentation.Instrumentation
$Management
输出:System.Management.Instrumentation.Instrumentation

从新对象中删除()