Using C#, when a user types a text in a normal textbox, how can you see the Hebrew equivalent of that text?
I want to use this feature on a data entry form, when the secretary puts in the customer name using English characters to have it converted automatically in another textbox to the hebrew representation.
Maybe something with CultureInfo(‘he-IL’)…
I didn’t even know there was such a thing as Hebraization — thanks for asking this question 🙂
This functionality is not provided by the .NET Framework, so I’m afraid you’d have to build it yourself. You’d have to know how the English is pronounced to provide the correct Hebrew transliteration — not an easy task, I think.