DTE2.SatelliteDllPath Method (String, String)
Visual Studio 2015
Returns the computed path to the satellite DLL when given the installation directory for an application and the file name of the DLL containing localized resources.
Assembly: EnvDTE80 (in EnvDTE80.dll)
Parameters
- Path
-
Type:
System.String
Required. Specifies the full path to the directory where the application is installed.
- Name
-
Type:
System.String
Required. The file name for the satellite DLL, such as "MyAppUI.DLL."
Implements
_DTE.SatelliteDllPath(String, String)Sub SatelliteDLLPathExample() MsgBox(DTE2.SatelliteDllPath("C:\MyAppProjects", "MyAppUI.dll")) End Sub
Show: