Skip to content

Instantly share code, notes, and snippets.

@sebnilsson
Created February 7, 2013 13:57
Show Gist options
  • Save sebnilsson/4731071 to your computer and use it in GitHub Desktop.
Save sebnilsson/4731071 to your computer and use it in GitHub Desktop.
public DateTime? TryGetAssemblyCreationDate(Assembly assembly)
{
try
{
return System.IO.File.GetCreationTime(assembly.Location);
}
catch
{
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment