ReSharp3DS - Documentation
- - - Github Repo - - -
Getting Started
List of functions available:
Console.Write("Hello, world!"); — Writes text to the console without a newline.
Console.WriteLine("Hello, World!"); — Writes text to the console with a newline.
Runtime.Yield(); — Yields control to the runtime.
Input.IsStartPressed() & Input.IsSelectPressed() — Checks if the START or SELECT buttons are pressed.
while (condition) { } — A loop that continues while the condition is true.
Example code:
namespace ReSharp3DS
{
public class Program
{
public static void Main()
{
Console.Clear();
Console.Write("Hello ");
Console.WriteLine("from C# on 3DS !");
Console.WriteLine("Press START to quit.");
while (!Input.IsStartPressed())
{
Runtime.Yield();
}
Console.WriteLine("Bye.");
}
}
}