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

39 lines
625 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 MetaDataModuleRef: MetaDataObject {
// Constructor Methods
internal MetaDataModuleRef(String name) {
this.name = name;
}
// Access Methods
public String Name {
get {
return this.name;
}
}
// Debug Methods
public override String ToString() {
return "MetaDataModuleRef("+this.name+")";
}
// State
private readonly String name;
}
}