FileChangeEventHandler.cs 270 B

12345678910111213
  1. //
  2. // System.Web.Util.FileChangeEventHandler.cs
  3. //
  4. // Authors:
  5. // Gaurav Vaish ([email protected], [email protected])
  6. //
  7. // (c) Gaurav Vaish 2001
  8. //
  9. namespace System.Web.Util
  10. {
  11. internal delegate void FileChangeEventHandler(object sender, int method);
  12. }