qshinoの日記

Powershell関係と徒然なこと

.NET

PowerShell Action delegate

PowerShell Action delegate Action/Funcはdelegate型 Action : 戻り値なし、引数なし。 Action: 戻り値なし、引数1 Func<T,TResult: 戻り値1,引数1 PowerShellでは [action] [action[int]] [func[int][int]] ? or func[int,int]] ? Funcの例 Func<T,TResult> using System; public class GenericFunc { public static void Main() { // Instantiate deleg…</t,tresult:>

AppDomain

AppDomain .Netの実行環境階層構造 Process – AppDomain —- RunSpace かな? Process メモリ空間を共有する。 AppDomain : アセンブリ空間共有 RunSpace : コンテキスト共有 一つのAppDomainに最大1つのアプリケーションクラスを持てる。 コード例/msdn usin…

C# in powerShell

C# in PowerShell PowerShell 内でC#を使う。 C#のコードを文字列に格納 $cs = "csharp code..." Add-Typeコマンドレットでロード Add-Type $cs 参照アセンブリがある場合は、 ReferencedAssemblies <アセンブリ[]> C#以外の言語なら、 Language <言語名> 言…