how to make T9 dictionary in c#?
-
T9 dictionary is used in mobiles.i want to make this dictionary using c sharp.give me some idea how to start thanks in advance
File\New\Project. What is a T9 dictionary ? If you need to ask how to write a calculator ( as you did above ), odds are you should buy a book and work through it, so you know enough about C# to understand the answers you will get here.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
T9 dictionary is used in mobiles.i want to make this dictionary using c sharp.give me some idea how to start thanks in advance
May I ask why? I guess your computer has just like mine a keyboard with a lot of keys so that there is no need for something like T9..? What point am I missing? However implementing such a dictionary is not difficult. You only need a list with the words that can be completed and then you need to check this list whenever you press a new key, starting from the last space, point, comma... I know that this answer doesn't tell you a lot but your question also doesn't tell me a lot about the problem :sigh: Just start with it and come back if you have any specific problems!
-
File\New\Project. What is a T9 dictionary ? If you need to ask how to write a calculator ( as you did above ), odds are you should buy a book and work through it, so you know enough about C# to understand the answers you will get here.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )