Estuvimos recabando en todo el mundo online para así tener para ti la respuesta para tu problema, si tienes alguna inquietud puedes dejar tu inquietud y te contestamos porque estamos para ayudarte.
Ejemplo: comando c# powershell
using System.Management.Automation;// Windows PowerShell assembly.namespaceSendGreeting// Declare the class as a cmdlet and specify the// appropriate verb and noun for the cmdlet name.[Cmdlet(VerbsCommunications.Send,"Greeting")]publicclassSendGreetingCommand: Cmdlet
// Declare the parameters for the cmdlet.[Parameter(Mandatory=true)]publicstring Name
get return name;
set name = value;privatestring name;// Override the ProcessRecord method to process// the supplied user name and write out a// greeting to the user by calling the WriteObject// method.protected override voidProcessRecord()WriteObject("Hello "+ name +"!");
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)