如何在c#中使用utf编码

如何在c#中使用utf编码

本文介绍了如何在c#中使用utf编码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有应用程序(winform)使用sql localdb,当我插入阿拉伯语单词时,我在名称colomn中出现了这个问题?????? ,我使用这段代码:

I have application (winform) use a sql localdb, the probleme when I insert arabic word i have in the colomn of the name this character "??????" ,I use this code:

var arabic = Encoding.GetEncoding(864);
var bytes = arabic.GetBytes(libelléTextEdit.Text);
libelléTextEdit.Text = arabic.GetString(bytes);



对我不起作用?

如何解决这个问题?


not work for me ?
How to solve this problem ?

推荐答案




这篇关于如何在c#中使用utf编码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 11:27