Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 905 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 905 Bytes

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.