Last active
December 25, 2015 03:49
-
-
Save Fhernd/6912434 to your computer and use it in GitHub Desktop.
Clase cliente para probar la librería que trae identificadores incompatibles.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Telephony; | |
namespace AppCliente | |
{ | |
public class AppClienteTelephony | |
{ | |
static void Main () | |
{ | |
// usamos el signo @ para la declaración de un objeto | |
// de la clase operator | |
@operator operador = new @operator(); | |
operador.@volatile = true; | |
Console.WriteLine ("Valor actual de volatile de operador: {0}", operador.@volatile); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment