14 lines
437 B
C#
14 lines
437 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="ICompilationSection.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Web.UI {
|
|
using System;
|
|
|
|
internal interface ICompilationSection {
|
|
bool Debug { get; }
|
|
}
|
|
}
|