// // // // // $Revision$ // using System; namespace ICSharpCode.NRefactory { public interface IEnvironmentInformationProvider { bool HasField(string fullTypeName, int typeParameterCount, string fieldName); } sealed class DummyEnvironmentInformationProvider : IEnvironmentInformationProvider { internal static readonly IEnvironmentInformationProvider Instance = new DummyEnvironmentInformationProvider(); public bool HasField(string fullTypeName, int typeParameterCount, string fieldName) { return false; } } }