Name
Activity Creator

Generated Code
The LocalizedDisplayName attribute on your activity class contains a reference to the name you entered. The name may be modified by going to Properties Resources.resx.
using ...
namespace MyCompany.MyProduct.Activities
{
[LocalizedDisplayName(nameof(Resources.Addition_DisplayName))]
[LocalizedDescription(nameof(Resources.Addition_Description))]
public class Addition : ContinuableAsyncCodeActivity
{
...
}
}
Effect in UiPath Studio
