项目作者: mgthantzin

项目描述 :
.Net library for converting between Unicode and Zawgyi
高级语言: C#
项目地址: git://github.com/mgthantzin/mmfont.Net.git
创建时间: 2017-06-15T10:09:19Z
项目社区:https://github.com/mgthantzin/mmfont.Net

开源协议:The Unlicense

下载


mmfont.Net

.Net library for converting between Unicode :left_right_arrow: 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

  1. using mmfont.Net;
  2. public partial class Main : Form
  3. {
  4. private void btnConvert_Click(object sender, EventArgs e)
  5. {
  6. txtUni.Text = Converter.ZG2Uni(txtZawgyi.Text);
  7. }
  8. }

Warning

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