-
Feb072012
使用C#进行Punycode编码中文域名的代码
测试: string s = Punycode.EncodingDomain(“中国.香港”); Console.WriteLine(s); Console.WriteLine(Punycode.DecodingDomain(s)); using System; using System.Collections.Generic; using System.Text; using System.Runtime.InteropServices; namespace Domain.Text { /// <summary> /// Punycode IDN编码操作 /// </summary> p...阅读全文1条评论