@@ -601,7 +601,7 @@ public DISubroutineType CreateSubroutineType( DebugInfoFlags debugFlags, DIType?
601
601
602
602
/// <summary>Creates debug description of a structure type</summary>
603
603
/// <param name="scope">Scope containing the structure</param>
604
- /// <param name="name">Name of the type</param>
604
+ /// <param name="name">Name of the type (use <see cref="string.Empty"/> for anonymous types) </param>
605
605
/// <param name="file">File containing the type</param>
606
606
/// <param name="line">Line of the start of the type</param>
607
607
/// <param name="bitSize">Size of the type in bits</param>
@@ -626,7 +626,7 @@ public DICompositeType CreateStructType( DIScope? scope
626
626
627
627
/// <summary>Creates debug description of a structure type</summary>
628
628
/// <param name="scope">Scope containing the structure</param>
629
- /// <param name="name">Name of the type</param>
629
+ /// <param name="name">Name of the type (use <see cref="string.Empty"/> for anonymous types) </param>
630
630
/// <param name="file">File containing the type</param>
631
631
/// <param name="line">Line of the start of the type</param>
632
632
/// <param name="bitSize">Size of the type in bits</param>
@@ -679,7 +679,7 @@ public DICompositeType CreateStructType( DIScope? scope
679
679
680
680
/// <summary>Creates debug description of a union type</summary>
681
681
/// <param name="scope">Scope containing the union</param>
682
- /// <param name="name">Name of the type</param>
682
+ /// <param name="name">Name of the type (use <see cref="string.Empty"/> for anonymous types) </param>
683
683
/// <param name="file">File containing the union</param>
684
684
/// <param name="line">Line of the start of the union</param>
685
685
/// <param name="bitSize">Size of the union in bits</param>
@@ -703,7 +703,7 @@ public DICompositeType CreateUnionType( DIScope? scope
703
703
704
704
/// <summary>Creates debug description of a union type</summary>
705
705
/// <param name="scope">Scope containing the union</param>
706
- /// <param name="name">Name of the type</param>
706
+ /// <param name="name">Name of the type (use <see cref="string.Empty"/> for anonymous types) </param>
707
707
/// <param name="file">File containing the union</param>
708
708
/// <param name="line">Line of the start of the union</param>
709
709
/// <param name="bitSize">Size of the union in bits</param>
@@ -726,7 +726,7 @@ public DICompositeType CreateUnionType( DIScope? scope
726
726
727
727
/// <summary>Creates debug description of a union type</summary>
728
728
/// <param name="scope">Scope containing the union</param>
729
- /// <param name="name">Name of the type</param>
729
+ /// <param name="name">Name of the type (use <see cref="string.Empty"/> for anonymous types) </param>
730
730
/// <param name="file">File containing the union</param>
731
731
/// <param name="line">Line of the start of the union</param>
732
732
/// <param name="bitSize">Size of the union in bits</param>
@@ -978,7 +978,7 @@ public DIEnumerator CreateEnumeratorValue( string name, long value, bool isUnsig
978
978
979
979
/// <summary>Creates an enumeration type</summary>
980
980
/// <param name="scope">Containing scope for the type</param>
981
- /// <param name="name">source language name of the type</param>
981
+ /// <param name="name">source language name of the type (use <see cref="string.Empty"/> for anonymous types) </param>
982
982
/// <param name="file">Source file containing the type</param>
983
983
/// <param name="lineNumber">Source file line number for the type</param>
984
984
/// <param name="sizeInBits">Size, in bits, for the type</param>
@@ -1407,7 +1407,7 @@ public DIExpression CreateConstantValueExpression( Int64 value )
1407
1407
1408
1408
/// <summary>Creates a replaceable composite type</summary>
1409
1409
/// <param name="tag">Debug information <see cref="Tag"/> for the composite type (only values for a composite type are allowed)</param>
1410
- /// <param name="name">Name of the type</param>
1410
+ /// <param name="name">Name of the type (use <see cref="string.Empty"/> for anonymous types) </param>
1411
1411
/// <param name="scope">Scope of the type</param>
1412
1412
/// <param name="file">Source file for the type</param>
1413
1413
/// <param name="line">Source line for the type</param>
0 commit comments