Added Hypen

Dual write PDSF for Metrology Viewer
Version Error Message
Tests Passed
gitignore
cellInstanceVersion.EdaConnection.PortNumber
NETFRAMEWORK
Added Climatec to Test.cs
GetJobIdDirectory
Remove and
This commit is contained in:
2024-05-16 12:12:13 -07:00
parent ee7be147e0
commit 457a27a357
95 changed files with 1612 additions and 269 deletions

View File

@ -418,10 +418,10 @@ public class ProcessData : IProcessData
{
_I = 0;
ParseErrorText = string.Empty;
if (!pages.ContainsKey(headerFileName))
if (!pages.TryGetValue(headerFileName, out string value))
throw new Exception();
_I = 0;
_Data = pages[headerFileName];
_Data = value;
ScanPast("Date:");
_ = GetToEOL();
Set(logistics);
@ -508,10 +508,10 @@ public class ProcessData : IProcessData
result.HeaderUniqueId = UniqueId;
result.Id = 0;
result.Title = null;
if (!pages.ContainsKey(waferFileName))
if (!pages.TryGetValue(waferFileName, out string value))
throw new Exception();
_I = 0;
_Data = pages[waferFileName];
_Data = value;
ScanPast("Date:");
result.Date = GetToEOL();
ScanPast("ID#");