How to access Timer in Console App

Hi,
There is a method to access Timer which resides outside of App, and it is for setting below values.
ParsingTimer.Mode = Timer.ModeMultiple
ParsingTimer.Enabled = True

When I try to access the Timer, I got "Item doesn’t exist’ error.
I’m very new to Console App.

Please advise me.

Oh. I found out one example like below.
//In the Run event of your console application
dim TMR as new myTimerSubclass
TMR.mode = 2 //Don’t forget this one
TMR.Period = 1000 //Fire every second

do
App.DoEvents
loop

Does this mean that App.DoEvents fires the timer automatically?
Is this a way to use timer in ConsoleApp?

Yes.

Thank you!