Multiple choice technology programming languages

My.Application.Log.WriteEntry , by default , writes to the file:

  1. assemblyname.log

  2. Applog.Log

  3. Application.Log

  4. None of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The My.Application.Log.WriteEntry method in VB.NET writes log entries to a file named after the assembly (e.g., MyApp.exe creates MyApp.log). This is the default behavior for the logging framework.