Click here to Skip to main content
15,886,199 members
Articles / Programming Languages / XSLT

XSL Transform Code Generator for Visual Studio .NET

Rate me:
Please Sign up or sign in to vote.
4.88/5 (14 votes)
13 Feb 2021CPOL3 min read 145.3K   2.4K   75  
A custom tool for Visual Studio .NET which runs an XSL transformation to generate code
namespace CustomToolGenerator 
{

  using System;
  using System.Runtime.InteropServices;

  [
  ComImport,
  Guid( "FC4801A3-2BA9-11CF-A229-00AA003D7352" ), 
  InterfaceTypeAttribute( ComInterfaceType.InterfaceIsIUnknown )
  ]
  internal interface IObjectWithSite 
  {

    //
    //    HRESULT SetSite(
    // 				[in] IUnknown * pUnkSite );
    //
    void SetSite(
      [MarshalAs( UnmanagedType.Interface )] object pUnkSite );

    //
    // HRESULT GetSite(
    //        [in] REFIID riid,
    //        [out, iid_is( riid )] void ** ppvSite );
    //
    void GetSite(                          [In] ref Guid riid,
      [Out, MarshalAs( UnmanagedType.LPArray )] object[] ppvSite );
  }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United Kingdom United Kingdom
Systems builder and developer, DotNet C#, Ruby, Golang, Linux, Cloud, Open Source contributor.

Comments and Discussions