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

Categories

0 votes
299 views
in Technique[技术] by (71.8m points)

c# - Calling Visual Studio method using powershell

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

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

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...