개정판 e248c69e
dev issue #000 : minor
Change-Id: I7a5cb76fd8fa6e2e1734574d8258c83a64d7930f
DTI_PID/SPPIDConverter/DB/Project_DB.cs | ||
---|---|---|
332 | 332 |
List<string> childList = new List<string>(); |
333 | 333 |
foreach (DataRow row in dt.Rows) |
334 | 334 |
{ |
335 |
if (!string.IsNullOrEmpty((string)row["AdditionalSymbol"])) |
|
335 |
if (row["AdditionalSymbol"] != null && !DBNull.Value.Equals(row["AdditionalSymbol"]) && !string.IsNullOrEmpty((string)row["AdditionalSymbol"]))
|
|
336 | 336 |
{ |
337 | 337 |
string[] array = row["AdditionalSymbol"].ToString().Split(new char[] { '/' }); |
338 | 338 |
foreach (var childString in array) |
내보내기 Unified diff