Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,11 @@ public string? SpecialBuild
/// </summary>
/// <param name="fileName">The path and name of the file to retrieve version information for.</param>
/// <returns>A <see cref="FileVersionInfo" /> containing information about the file. If the file did not contain version information, the <see cref="FileVersionInfo" /> contains only the name of the file requested.</returns>
/// <remarks>
/// <note type="caution">
/// Use this only with trusted files. Malformed or malicious files can cause unexpected behavior.
Comment thread
steveisok marked this conversation as resolved.
/// </note>
/// </remarks>
/// <exception cref="FileNotFoundException"><paramref name="fileName"/> does not exist or cannot be accessed.</exception>
public static FileVersionInfo GetVersionInfo(string fileName)
{
Expand Down
Loading