Skip to content

Instantly share code, notes, and snippets.

View robertmclaws's full-sized avatar

Robert McLaws robertmclaws

View GitHub Profile
@DamianEdwards
DamianEdwards / SKILL.md
Created February 15, 2026 22:03
C# File-based apps skill
name description
csharp-scripts
Run single-file C# programs as scripts for quick experimentation, prototyping, and concept testing. Use when the user wants to write and execute a small C# program without creating a full project.

C# Scripts

When to Use

  • Testing a C# concept, API, or language feature with a quick one-file program
// In your Forms shared code
using System;
using Xamarin.Forms;
namespace FormsPlayground
{
public class DisabledTitleColorEffect : RoutingEffect
{
string _disabledColor;