如何在C#中将动态文本从英语翻译成西班牙语

如何在C#中将动态文本从英语翻译成西班牙语

本文介绍了如何在C#中将动态文本从英语翻译成西班牙语的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在C#中将文本(字符串和日期)从英语翻译成西班牙语。生病的文本将是动态的,所以它可以是任何东西。任何人都可以建议如何做到这一点。



此外,我不希望限制允许的字符数,因为文本可能有更多的字符。

如果允许的字符数有限制,那么它就足够大了。



我尝试了什么:



我尝试在互联网上寻找各种解决方案,但似乎只有静态文本被转换或翻译成其他语言。我需要使用动态文本。

解决方案

I want to translate text (string and date both) from English language to Spanish language in C#. The text ill get will be dynamic so it can be anything. Can anyone please suggest as to how this can be done.

Also i don't want restrictions regarding number of characters allowed as text may have more characters.
If number of characters allowed has a limit then it would be better that it is large enough.

What I have tried:

I tried looking into various solutions to this on Internet but seems that only static text has been converted or translated to a different language. I need to do this with dynamic texts.

解决方案


这篇关于如何在C#中将动态文本从英语翻译成西班牙语的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 05:43