Browse Source
We can not get DebugType for a Function git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2781 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
7 changed files with 106 additions and 0 deletions
@ -0,0 +1,23 @@ |
|||||||
|
// <file>
|
||||||
|
// <copyright see="prj:///doc/copyright.txt"/>
|
||||||
|
// <license see="prj:///doc/license.txt"/>
|
||||||
|
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
|
||||||
|
// <version>$Revision: 2077 $</version>
|
||||||
|
// </file>
|
||||||
|
|
||||||
|
#pragma warning disable 1591
|
||||||
|
|
||||||
|
namespace Debugger.Wrappers.CorDebug |
||||||
|
{ |
||||||
|
using System; |
||||||
|
|
||||||
|
public partial class ICorDebugClass2 |
||||||
|
{ |
||||||
|
public ICorDebugType GetParameterizedType(uint elementType, ICorDebugType[] ppTypeArgs) |
||||||
|
{ |
||||||
|
return this.GetParameterizedType(elementType, (uint)ppTypeArgs.Length, ppTypeArgs); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
#pragma warning restore 1591
|
||||||
Loading…
Reference in new issue