mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 02:39:22 +08:00
943a438a6c
// Please do not use the binary version on NuGet since there are some issues with the data table
16 lines
281 B
C#
16 lines
281 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Wox.Infrastructure
|
|
{
|
|
public static class ChineseToPinYin
|
|
{
|
|
[Obsolete]
|
|
public static string ToPinYin(string txt)
|
|
{
|
|
return txt.Unidecode();
|
|
}
|
|
}
|
|
}
|