The goal of my situation/problem is I want to setValue of my getValue to a destination within the registry. I am not not too familiar with get/sets, so any help would be awesome. Let me know if you need anything else from me.
namespace RegistrySetter
{
public class Ironman : CodeActivity
{
public InArgument<string> keypath { get; set; }
public OutArgument<string> TextOut { get; set; }
protected override void Execute(CodeActivityContext context)
{
string KeyPath = this.keypath.Get(context);
context.SetValue<string>(this.TextOut, KeyPath);
}
}
}