示例#1
0
 public AssemblyDebugSourceDocumentViewModel(AssemblyDebugSourceDocument sourceDocument, string path, string?location, bool isEmbedded)
 {
     _sourceDocument = sourceDocument ?? throw new ArgumentNullException(nameof(sourceDocument));
     Path            = path;
     Location        = location;
     IsEmbedded      = isEmbedded;
 }
 public AssemblyDebugSourceDocumentViewModel(AssemblyDebugSourceDocument sourceDocument, string path, string location)
 {
     _sourceDocument = sourceDocument ?? throw new ArgumentNullException(nameof(sourceDocument));
     Path            = path;
     Location        = location;
 }