PowerToys/Wox.Infrastructure/ChineseToPinYin.cs

16 lines
281 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2014-03-12 21:27:16 +08:00
using System.Text;
namespace Wox.Infrastructure
{
public static class ChineseToPinYin
{
[Obsolete]
2014-03-12 21:27:16 +08:00
public static string ToPinYin(string txt)
{
return txt.Unidecode();
2014-03-12 21:27:16 +08:00
}
}
}