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.
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace SharpCifs.Util.Sharpen
|
|
|
|
{
|
|
|
|
public class CharSequence
|
|
|
|
{
|
|
|
|
public static implicit operator CharSequence(string str)
|
|
|
|
{
|
|
|
|
return new StringCharSequence(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static implicit operator CharSequence(StringBuilder str)
|
|
|
|
{
|
|
|
|
return new StringCharSequence(str.ToString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class StringCharSequence : CharSequence
|
|
|
|
{
|
|
|
|
string _str;
|
|
|
|
|
|
|
|
public StringCharSequence(string str)
|
|
|
|
{
|
|
|
|
this._str = str;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
{
|
|
|
|
return _str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|