PoshCode Archive  Artifact [4d196f05a9]

Artifact 4d196f05a9264064d46a84f02782d65f6cdd4bdc55419932c7824d26c4dda725:

  • File New-Type.ps1 — part of check-in [4e0123956e] at 2018-06-10 14:23:00 on branch trunk — Analogous to ONE of PowerShell 2’s Add-Type cmdlet’s overrides, this script/function will take C# code and compile it in memory. (user: Joel Bennett size: 2290)

# encoding: ascii
# api: powershell
# title: New-Type
# description: Analogous to ONE of PowerShell 2’s Add-Type cmdlet’s overrides, this script/function will take C# code and compile it in memory.
# version: 1.0
# type: script
# author: Joel Bennett
# license: CC0
# function: New-Type
# x-poshcode-id: 720
# x-archived: 2015-05-06T17:10:19
# x-published: 2009-12-08T11:05:00
#
#
## New-Type (like Add-Type, but for PowerShell 1.0)
## Takes C# source code, and compiles it (in memory) for use in scripts ...
####################################################################################################
## USAGE EXAMPLE:
##    New-Type @"
##    using System;
##    public struct User {
##       public string Name;
##       public int Age;
##       public User(string name, int age) {
##          Name = name; Age = age;
##       }
##    }
##    "@
##    
##    $user = New-Object User "Bobby",28
##    $user.Name
####################################################################################################
## NOTE: Save as New-Type.ps1 in your path, or uncomment the function line below (and the last line)
####################################################################################################
#function New-Type {
   param([string]$TypeDefinition,[string[]]$ReferencedAssemblies)
   
   ## Obtains an ICodeCompiler from a CodeDomProvider class.
   $provider = New-Object Microsoft.CSharp.CSharpCodeProvider
   ## Get the location for System.Management.Automation DLL
   $dllName = [PsObject].Assembly.Location
   ## Configure the compiler parameters
   $compilerParameters = New-Object System.CodeDom.Compiler.CompilerParameters

   $assemblies = @("System.dll", $dllName)
   $compilerParameters.ReferencedAssemblies.AddRange($assemblies)
   if($ReferencedAssemblies) { 
      $compilerParameters.ReferencedAssemblies.AddRange($ReferencedAssemblies) 
   }

   $compilerParameters.IncludeDebugInformation = $true
   $compilerParameters.GenerateInMemory = $true

   $compilerResults = $provider.CompileAssemblyFromSource($compilerParameters, $TypeDefinition)
   if($compilerResults.Errors.Count -gt 0) {
     $compilerResults.Errors | % { Write-Error ("{0}:`t{1}" -f $_.Line,$_.ErrorText) }
   }
#}