Start finder with a file path?

Does anyone know how to start a new finder window with a path to a specific file?
This is for a standalone app only.

Something like this

var finder : System.Diagnostics.Process = new System.Diagnostics.Process();
		
finder.Start("finder.app", myFileLocation);

only that doesn’t work…

The ‘open’ command line tool might be sufficient:

open /Path/To/Folder

The proper way to do it is to send AppleEvents to the Finder, but that’s probably a lot of extra work for little benefit.

It works, thanks!