I am starting a new project that is using Silverlight and I have chosen C# as the language. So far I’m not doing too great. I can’t manage to find a simple way of printing text on screen using C#.
Back in C++ (I was using OF) I could simply load some font to an object and call a function with string + position and everything worked just fine. Silverlight is supposed to be something “simple” so I assume there must be something like that as well.
How do you do that?
hmm,
TextBlock.Text = "hello world";?