15 lines
360 B
C#
15 lines
360 B
C#
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
|
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
|
|
|
using System;
|
|
using System.Reflection;
|
|
|
|
namespace Debugger.MetaData
|
|
{
|
|
interface IOverloadable
|
|
{
|
|
ParameterInfo[] GetParameters();
|
|
IntPtr GetSignarture();
|
|
}
|
|
}
|