Dispose the object, releasing the COM ShellLink object
()
| 524 | /// Dispose the object, releasing the COM ShellLink object |
| 525 | /// </summary> |
| 526 | public void Dispose() |
| 527 | { |
| 528 | if (linkW != null) |
| 529 | { |
| 530 | Marshal.ReleaseComObject(linkW); |
| 531 | linkW = null; |
| 532 | } |
| 533 | if (linkA != null) |
| 534 | { |
| 535 | Marshal.ReleaseComObject(linkA); |
| 536 | linkA = null; |
| 537 | } |
| 538 | } |
| 539 | |
| 540 | public string ShortCutFile |
| 541 | { |
no outgoing calls
no test coverage detected