You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To properly contribute to this project you have to create each of the activities found in UiPath.Core.Activities by using the template provided in the snippet above by writing the class inside of the **UiPathCodeWorks.cs** file
146
+
To properly contribute to this project you have to create each of the activities found in UiPath.Core.Activities by using the template provided in the snippet below and by writing the class inside of the **UiPathCodeWorks.cs** file
147
+
148
+
# Class Template
149
+
```
150
+
public class <ClassName>
151
+
{
152
+
<Argument Properties>
153
+
154
+
<Run Method of IDictionary<string,object> type with parameters named after the UiPath Activity Properties>
155
+
156
+
<Assigning values to InArguments based on parameters>
157
+
158
+
<Initializing the output dictionary>
159
+
<Adding the Arguments to the input dictionary>
160
+
161
+
<Activity Implementation Body>
162
+
163
+
<Try Catch Snippet Copy/Paste with changed Text to reflect the activity name>
164
+
165
+
<Return output dictionary>
166
+
167
+
}
168
+
```
169
+
169
170
170
171
# What are the advantages of using the coding framework over UiPath Studio traditional method?
0 commit comments