Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BuildMethod.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d06a4024166db25586d71d460f62b62c28fb005a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// System.Web.UI.BuildMethod.cs
//
// Author:
//   Bob Smith <bob@thestuff.net>
//
// (C) Bob Smith
//

using System;
using System.Web;

namespace System.Web.UI
{
        public delegate Control BuildMethod();
}