VB.NET Open text file with notepad in vb.net

Imports System.Diagnostics
    
Private Sub OpenTextFileWithNotePad()
        If File.Exists("File.txt") Then
            Try
                Process.Start("notepad.exe", "File.txt")
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End Try
        Else
            MessageBox.Show("File Path Not Exist")
        End If
    End Sub