タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

shellと.NETに関するyuguiのブックマーク (1)

  • PowerShellにはまる - Kazzz's diary

    これまでの流れで週末からWindows PowerShellについて、いろいろと調べているのだが、これは非常に面白い。例えばCmdLet(コマンドレット)という機能があって、以下のようなC#で書いたクラス(勿論VBでも良いが)から自分だけのコマンドが作れるのだ。 using System; using System.Collections.Generic; using System.Text; using System.Management.Automation; [Cmdlet("say","hello")] public class CmdLetTest : Cmdlet { private string name; [Parameter(Mandatory=true, Position=0)] public string Name { get { return this.name;

    PowerShellにはまる - Kazzz's diary
  • 1