public class ExampleClass
{
	[ConCmd( "NameOfCmd" )]
	public static void MethodToCallOnCmd(string argument )
	{
		Log.Info( $"You gave these arguments: {argument}" );
	}
}
Primitive Example of Usage