Exemple #1
0
 public DumpType(ulong assemblyId, string typeName)
 {
     Key = new DumpTypeKey(assemblyId, typeName);
 }
Exemple #2
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="DumpType" /> class.
 /// </summary>
 internal DumpType()
 {
     Key = new DumpTypeKey(0, null);
 }
Exemple #3
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="DumpType" /> class.
 /// </summary>
 /// <param name="key">The key.</param>
 /// <exception cref="ArgumentNullException">key</exception>
 /// <inheritdoc />
 public DumpType(DumpTypeKey key)
 {
     Key = key ?? throw new ArgumentNullException(nameof(key));
 }