Skip to content

Commit

Permalink
Update GettingStarted.md (#634)
Browse files Browse the repository at this point in the history
* Update GettingStarted.md

Fix #633

* Update GettingStarted.md
  • Loading branch information
lindexi authored Apr 25, 2020
1 parent c9ba4f2 commit 7088b6c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ foreach (ClrInfo version in dataTarget.ClrVersions)
Console.WriteLine("Found CLR Version: " + version.Version);

// This is the data needed to request the dac from the symbol server:
ModuleInfo dacInfo = version.DacInfo;
Console.WriteLine("Filesize: {0:X}", dacInfo.FileSize);
Console.WriteLine("Timestamp: {0:X}", dacInfo.TimeStamp);
Console.WriteLine("Dac File: {0}", dacInfo.FileName);
DacInfo dacInfo = version.DacInfo;
Console.WriteLine("Filesize: {0:X}", dacInfo.IndexFileSize);
Console.WriteLine("Timestamp: {0:X}", dacInfo.IndexTimeStamp);
Console.WriteLine("Dac File: {0}", dacInfo.PlatformSpecificFileName);

// If we just happen to have the correct dac file installed on the machine,
// the "LocalMatchingDac" property will return its location on disk:
Expand Down

0 comments on commit 7088b6c

Please sign in to comment.