View Out-Tree.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-StrictMode -Version 3.0 | |
function Out-Tree { | |
<# | |
.SYNOPSIS | |
View object parent/child relationship within a hierarchy | |
.DESCRIPTION | |
Outputs objects as a hierarchy, outputted as string. It is important that properties are sorted. | |
It is very important to sort list before Out-Tree cmdlet by ParentValueProperty. Because if objects come in NOT within sequence, the hierarchy will be "interrupted" and restart |
View Slick.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* File: Cell.cs | |
*/ | |
declare module Slick { | |
export class CellSelection { | |
public row : number; | |
public cell : number; | |
public grid : Slick.Grid; | |
} | |
} |
View ssis_script_object_output.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.SqlServer.Dts.Pipeline; | |
using Microsoft.SqlServer.Dts.Runtime.Wrapper; | |
using System; | |
using System.Collections.Generic; | |
using System.Data; | |
using System.Data.OleDb; | |
using System.Reflection; | |
using System.Text; | |
//Not using any syntax after .net 4.5 as won't be debuggable until 3.2 Preview https://marketplace.visualstudio.com/items?itemName=SSIS.SqlServerIntegrationServicesProjects |