/ILSpy.BamlDecompiler/Ricciolo.StylesExplorer.MarkupReflection/ResourceName.cs

http://github.com/icsharpcode/ILSpy · C# · 32 lines · 25 code · 5 blank · 2 comment · 0 complexity · 237600314e51ac97264fd0c97c5a1870 MD5 · raw file

  1. // Copyright (c) Cristian Civera (cristian@aspitalia.com)
  2. // This code is distributed under the MS-PL (for details please see \doc\MS-PL.txt)
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace Ricciolo.StylesExplorer.MarkupReflection
  7. {
  8. public class ResourceName
  9. {
  10. private string name;
  11. public ResourceName(string name)
  12. {
  13. this.name = name;
  14. }
  15. public override string ToString()
  16. {
  17. return this.Name;
  18. }
  19. public string Name
  20. {
  21. get
  22. {
  23. return this.name;
  24. }
  25. }
  26. }
  27. }