mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +00:00
22 lines
No EOL
432 B
C#
22 lines
No EOL
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace EcmaCil.IL
|
|
{
|
|
public class InstructionInt64: BaseInstruction
|
|
{
|
|
public InstructionInt64(InstructionKindEnum aKind, int aIndex, long aValue)
|
|
: base(aKind, aIndex)
|
|
{
|
|
Value = aValue;
|
|
}
|
|
|
|
public long Value
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
}
|
|
} |