mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
455 B
29 lines
455 B
// Copyright (c) Cristian Civera (cristian@aspitalia.com) |
|
// This code is distributed under the MS-PL (for details please see \doc\MS-PL.txt) |
|
|
|
|
|
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; |
|
} |
|
} |
|
} |
|
}
|
|
|