mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
// 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();
|
|
}
|
|
}
|
|
}
|