singrdk/base/Windows/mkmsil/msil/SignatureField.cs

39 lines
605 B
C#
Raw Permalink Normal View History

2008-11-17 18:29:00 -05:00
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
using System;
namespace Bartok.MSIL
{
public class SignatureField: Signature {
// Constructor Methods
internal SignatureField(Type type) {
this.type = type;
}
// Access Methods
public Type FieldType {
get {
return this.type;
}
}
// Debug Methods
public override String ToString() {
return "SignatureField("+type+")";
}
// State
private readonly Type type;
}
}