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.
23 lines
524 B
23 lines
524 B
using System;
|
|
using System.Linq;
|
|
|
|
namespace Microsoft.Windows.Controls
|
|
{
|
|
internal class Token
|
|
{
|
|
public string Delimiter { get; private set; }
|
|
public object Item { get; set; }
|
|
|
|
private string _tokenKey;
|
|
public string TokenKey
|
|
{
|
|
get { return _tokenKey; }
|
|
set { _tokenKey = String.Format("{0}{1}", value, Delimiter); }
|
|
}
|
|
|
|
public Token(string delimiter)
|
|
{
|
|
Delimiter = delimiter;
|
|
}
|
|
}
|
|
}
|
|
|