TextTransformation.Write (Método) (String)
Anexa una copia de la cadena especificada al resultado de texto generado.
Espacio de nombres: Microsoft.VisualStudio.TextTemplating
Ensamblado: Microsoft.VisualStudio.TextTemplating.12.0 (en Microsoft.VisualStudio.TextTemplating.12.0.dll)
Sintaxis
'Declaración
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
)
Parámetros
textToAppend
Tipo: StringCadena que se va a anexar.
Excepciones
Excepción | Condición |
---|---|
ArgumentOutOfRangeException | Si se aumenta el valor de la instancia StringBuilder subyacente, se superará MaxCapacity. |
Comentarios
El método Write se puede utilizar directamente en una plantilla de texto.
Ejemplos
En el ejemplo de código siguiente se muestra la llamada al método Write desde una plantilla de texto. Pegue este código en cualquier archivo de plantilla del texto y ejecute la transformación de plantilla de texto para ver los resultados.
<#
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
#>
Este ejemplo produce el siguiente resultado.
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.
Seguridad de .NET Framework
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.
Vea también
Referencia
Microsoft.VisualStudio.TextTemplating (Espacio de nombres)