-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArgListOpcode.Generated.cs
More file actions
40 lines (35 loc) · 1.45 KB
/
ArgListOpcode.Generated.cs
File metadata and controls
40 lines (35 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*****************************************************************************
* *
* ArgListOpcode.Generated.cs *
* 16 December 2009 *
* Project: MetaphysicsIndustries.Build *
* Written by: Richard Sartor *
* Copyright © 2009 Metaphysics Industries, Inc. *
* Date Generated: 2 March 2010 *
* *
* A class that represents an "arg list". *
* *
*****************************************************************************/
using System;
using System.Collections.Generic;
namespace MetaphysicsIndustries.Build
{
public partial class ArgListOpcode : Opcode
{
public ArgListOpcode()
{
}
public override byte IlByte
{
get { return 0x00; }
}
public override bool IsExtended
{
get { return true; }
}
public override string AssemblerName
{
get { return "arglist"; }
}
}
}