Skip to content

Instantly share code, notes, and snippets.

@Kalladystine
Created March 19, 2024 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kalladystine/a27659b26ad35eb728f5ee353157f986 to your computer and use it in GitHub Desktop.
Save Kalladystine/a27659b26ad35eb728f5ee353157f986 to your computer and use it in GitHub Desktop.
using System.Activities;
namespace TestActivityLibrary1
{
public class CanYouLoadThis : CodeActivity<int>
{
protected override int Execute(CodeActivityContext context)
{
return 7;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment