/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
- // Copyright (c) Cristian Civera (cristian@aspitalia.com)
- // This code is distributed under the MS-PL (for details please see \doc\MS-PL.txt)
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Ricciolo.StylesExplorer.MarkupReflection
- {
- public class ResourceName
- {
- private string name;
- public ResourceName(string name)
- {
- this.name = name;
- }
- public override string ToString()
- {
- return this.Name;
- }
- public string Name
- {
- get
- {
- return this.name;
- }
- }
- }
- }