3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

UiPathでC#コードを呼び出す

Last updated at Posted at 2020-12-20
  • UiPathでC#コードを呼び出しをする方法

手順

1.「コードを呼び出し」アクティビティを使用する

9.png

2.コードを記入

  • 言語は「CSharp」にすること。
  • コードはコードを書いたファイルを呼び出すのではなく直接記入する。

11.png

【コード全文】

string name = argInput;
string result = String.Concat( "Hello," , name);

argOutput = result;

引数の設定によりデータの受け渡しをする。

10.png

3.実行フロー&実行結果

【実行フロー】
8.png

【実行結果】
12.png

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?