I have a simple text box in a WPF application.
I need to know when a character was added/deleted in the text box, which character a
You can use a "brute force" method - the text box (in winforms and I think in WPF as well) has a text changed event you can use and by comparing the text before the event and the current text you can find what character has been added or removed.