Delegates.cs 261 B

123456789101112131415161718
  1. //
  2. // System.Data.ObjectSpaces.Query delegates
  3. //
  4. //
  5. // Author:
  6. // Richard Thombs ([email protected])
  7. //
  8. #if NET_1_2
  9. using System;
  10. namespace System.Data.ObjectSpaces.Query
  11. {
  12. public delegate void EnumNodesCallBack(Expression node,object[] opParams);
  13. }
  14. #endif