/mmfont.Net

.Net library for converting between Unicode and Zawgyi

Primary LanguageC#The UnlicenseUnlicense

mmfont.Net

.Net library for converting between Unicode ↔️ Zawgyi

AppVeyor Build status Travis CI Build Status

Credit

This library is .Net adaptation of mmfont by @setkyar who packaged @saturngod's Rabbit into php.

Usage

using mmfont.Net;

public partial class Main : Form
{
    private void btnConvert_Click(object sender, EventArgs e)
    {
        txtUni.Text = Converter.ZG2Uni(txtZawgyi.Text);
    }
}

Warning

This is not a fully functional library. Instead, it's just a starter with lots of rooms for improvement.