mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-03 06:40:23 +00:00
33 lines
No EOL
603 B
C#
33 lines
No EOL
603 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace EcmaCil
|
|
{
|
|
public class MethodMeta: BaseMemberMeta
|
|
{
|
|
public MethodMeta()
|
|
: base()
|
|
{
|
|
Parameters = new MethodParameterMeta[0];
|
|
}
|
|
public MethodParameterMeta[] Parameters
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public TypeMeta ReturnType
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public MethodBodyMeta Body
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
} |