Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Last active December 25, 2015 03:49
Show Gist options
  • Save Fhernd/6912434 to your computer and use it in GitHub Desktop.
Save Fhernd/6912434 to your computer and use it in GitHub Desktop.
Clase cliente para probar la librería que trae identificadores incompatibles.
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