I want to copy the word entered by a user as soon as the user presses space(Just like the spell checker in word editors do). I'm using the following code:
Code:
private void ThisAddIn_Startup(object sender, System.EventArgs e)
    {
        ConsoleKeyInfo info = Console.ReadKey();
        if (info.KeyChar == ' ')
        {
            Word.Range rng = this.Application.ActiveDocument.Words.Last;
...