TextTransformation.Write – metoda (String)
Připojí kopii zadaného řetězce na výstup generovaný text.
Obor názvů: Microsoft.VisualStudio.TextTemplating
Sestavení: Microsoft.VisualStudio.TextTemplating.12.0 (v Microsoft.VisualStudio.TextTemplating.12.0.dll)
Syntaxe
'Deklarace
Public Sub Write ( _
textToAppend As String _
)
public void Write(
string textToAppend
)
public:
void Write(
String^ textToAppend
)
member Write :
textToAppend:string -> unit
public function Write(
textToAppend : String
)
Parametry
textToAppend
Typ: StringŘetězec, který chcete přidat.
Výjimky
Výjimka | Podmínka |
---|---|
ArgumentOutOfRangeException | Zvětšení hodnoty základní StringBuilder by překročil MaxCapacity. |
Poznámky
Write Metoda může být použita přímo v šabloně text.
Příklady
Následující příklad kódu ukazuje volání Write metoda text šablony.Vložte tento kód na libovolný textový soubor šablony a spusťte transformace textu šablony zobrazíte výsledky.
<#
string text = @"This is text to append to my output file.";
Write(text); //Using the Write method
WriteLine(null); //Using the WriteLine method
WriteLine(null); //Using the WriteLine method
for(int i=1; i<4; i++)
{
WriteLine(text); //Using the WriteLine method
}
#>
<#
Dim text as String = "This is text to append to my output file."
Dim i as Integer = 0
Write(text) 'Using the Write method
WriteLine(Nothing) 'Using the WriteLine method
WriteLine(Nothing) 'Using the WriteLine method
For i = 1 To 3
WriteLine(text) 'Using the WriteLine method
Next
#>
Tento příklad vytvoří následující výstup:
This is text to append to my output file.
This is text to append to my output file.
This is text to append to my output file.
This is text to append to my output file.
Zabezpečení rozhraní .NET Framework
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.
Viz také
Referenční dokumentace
Microsoft.VisualStudio.TextTemplating – obor názvů