码迷,mamicode.com
首页 > 系统相关 > 详细

从PowerShell脚本调用DLL的方法

时间:2019-12-26 13:04:46      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:shel   visio   class   ace   min   hello   info   脚本   table   

$PSVersionTable.PSVersion

Major  Minor  Build  Revision
-----  -----  -----  --------
5      1      18362  145     

 

创建一个Class,这个类包含了构造方法,静态方法和普通方法

using System;

namespace Cosmos.StudentForFrameWork
{
    public class Students
    {
        public string Name { get;  set; }
        public int Age { get; private set; }
        public Students(string name, int age)
        {
            Name = name;
            Age = age;
        }

        public static string StaticStudent(string name)
        {
            return "Hello:" + name;
        }

        public String GetInfo(string message)
        {
            return message + Name + Age;
        }

        public static string GetName
        {
            get { return "Do u want get my Name!"; }
        }
      
    }
}

 

把他编译成dll.

导入你的dll所在的地方

调用 dll 的构造方法 使用 ::new()
调用dll 的静态方法使用::MethodName()
Import-Module "$PSScriptRoot\Cosmos.StudentForFrameWork.dll";  
$Stuent=[Cosmos.StudentForFrameWork.Students]::new($name,$age); 
$StudentInfo=$Stuent.GetInfo();
$StaticStu=[Cosmos.StudentForFrameWork.Students]::StaticStudent($name);


 

  

从PowerShell脚本调用DLL的方法

标签:shel   visio   class   ace   min   hello   info   脚本   table   

原文地址:https://www.cnblogs.com/fits/p/12101164.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!