Skip to content

Instantly share code, notes, and snippets.

View defaultlocale's full-sized avatar

Aidar Myrzahanov defaultlocale

  • Almaty, Kazakhstan
View GitHub Profile
@defaultlocale
defaultlocale / ExampleForm.cs
Created August 19, 2019 10:05
More complete Map Runner example
using System;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Windows.Forms;
class ExampleForm : Form
{
/// <summary>
/// Main method (just to run a form)
@defaultlocale
defaultlocale / MapRunnerDisplay.cs
Created August 19, 2019 09:36
An example of two forms with a synchronized cursor
using System;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
class MapRunnerDisplay : Form
{
[STAThread]
private static void Main()
{
@defaultlocale
defaultlocale / Main.java
Last active October 11, 2017 12:17
Пример компиляции try-catch-finally
public class Main {
public static void main(String[] args) {
new Main().execute();
}
public void execute() {
System.out.println(run());
}