We need you! We're working hard on the next version of Developer Fusion - Let us know what you think we should be up to!

The Labs \ Source Viewer \ SSCLI \ System.Resources \ UltimateResourceFallbackLocation

  1. // ==++==
  2. //
  3. //
  4. // Copyright (c) 2006 Microsoft Corporation. All rights reserved.
  5. //
  6. // The use and distribution terms for this software are contained in the file
  7. // named license.txt, which can be found in the root of this distribution.
  8. // By using this software in any fashion, you are agreeing to be bound by the
  9. // terms of this license.
  10. //
  11. // You must not remove this notice, or any other, from this software.
  12. //
  13. //
  14. // ==--==
  15. /*============================================================
  16. **
  17. ** Enum:  UltimateResourceFallbackLocation
  18. **
  19. **                                                   
  20. **
  21. ** Purpose: Tells the ResourceManager where to find the
  22. **          ultimate fallback resources for your assembly.
  23. **
  24. ** Date:  August 21, 2003
  25. **
  26. ===========================================================*/
  27. using System;
  28. namespace System.Resources
  29. {
  30.    
  31.     [Serializable()]
  32.     [System.Runtime.InteropServices.ComVisible(true)]
  33.     public enum UltimateResourceFallbackLocation
  34.     {
  35.         MainAssembly,
  36.         Satellite
  37.     }
  38. }

Developer Fusion