Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to write a powershell script to call a method that's located in my Visual Studio (2010) solution. What is the syntax for calling, for example, a method like

public void CreateData(string s, int i)

?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
302 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can compile your class library project into a dll then load the dll using reflection in powershell. Here is an example:

c# code:

public class MyClass {
    public void CreateData(string s, int i) {
        // your logic here
    }
}

powershell code:

$lib = [Reflection.Assembly]::LoadFile("C:pathoMyClass.dll")
$obj = new-object MyClass
$result = $obj.CreateData("s_value",5)

This code assumes that your class is called "MyClass". You may have to run set-executionpolicy RemoteSigned in powershell first.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...