_DTE::SatelliteDllPath Method (String^, String^)
Visual Studio 2015
Returns the computed path to the satellite DLL when given the installation directory and the file name of the DLL containing localized resources.
Assembly: EnvDTE (in EnvDTE.dll)
Parameters
- Path
-
Type:
System::String^
Required. Specifies the full path to the directory where the main application is installed.
- Name
-
Type:
System::String^
Required. The filename for the satellite DLL, such as "MyProgramUI.DLL."
Sub SatelliteDLLPathExample() MsgBox(DTE.SatelliteDllPath("c:\program files\microsoft visual studio .net\common7\ide", "msenv.dll")) End Sub
Show: