@@ -601,7 +601,7 @@ public DISubroutineType CreateSubroutineType( DebugInfoFlags debugFlags, DIType?
601601
602602 /// <summary>Creates debug description of a structure type</summary>
603603 /// <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>
605605 /// <param name="file">File containing the type</param>
606606 /// <param name="line">Line of the start of the type</param>
607607 /// <param name="bitSize">Size of the type in bits</param>
@@ -626,7 +626,7 @@ public DICompositeType CreateStructType( DIScope? scope
626626
627627 /// <summary>Creates debug description of a structure type</summary>
628628 /// <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>
630630 /// <param name="file">File containing the type</param>
631631 /// <param name="line">Line of the start of the type</param>
632632 /// <param name="bitSize">Size of the type in bits</param>
@@ -679,7 +679,7 @@ public DICompositeType CreateStructType( DIScope? scope
679679
680680 /// <summary>Creates debug description of a union type</summary>
681681 /// <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>
683683 /// <param name="file">File containing the union</param>
684684 /// <param name="line">Line of the start of the union</param>
685685 /// <param name="bitSize">Size of the union in bits</param>
@@ -703,7 +703,7 @@ public DICompositeType CreateUnionType( DIScope? scope
703703
704704 /// <summary>Creates debug description of a union type</summary>
705705 /// <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>
707707 /// <param name="file">File containing the union</param>
708708 /// <param name="line">Line of the start of the union</param>
709709 /// <param name="bitSize">Size of the union in bits</param>
@@ -726,7 +726,7 @@ public DICompositeType CreateUnionType( DIScope? scope
726726
727727 /// <summary>Creates debug description of a union type</summary>
728728 /// <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>
730730 /// <param name="file">File containing the union</param>
731731 /// <param name="line">Line of the start of the union</param>
732732 /// <param name="bitSize">Size of the union in bits</param>
@@ -978,7 +978,7 @@ public DIEnumerator CreateEnumeratorValue( string name, long value, bool isUnsig
978978
979979 /// <summary>Creates an enumeration type</summary>
980980 /// <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>
982982 /// <param name="file">Source file containing the type</param>
983983 /// <param name="lineNumber">Source file line number for the type</param>
984984 /// <param name="sizeInBits">Size, in bits, for the type</param>
@@ -1407,7 +1407,7 @@ public DIExpression CreateConstantValueExpression( Int64 value )
14071407
14081408 /// <summary>Creates a replaceable composite type</summary>
14091409 /// <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>
14111411 /// <param name="scope">Scope of the type</param>
14121412 /// <param name="file">Source file for the type</param>
14131413 /// <param name="line">Source line for the type</param>
0 commit comments