Здравствуйте, Какая разница, Вы писали:
КР>Hi All!
КР>ReSharper 8.1.23.546
КР>Visual Studio 2013
КР>Показывает сабжевый хинт на выделенный StartWith
КР>Label — string property
КР>КР> Label = doc.GetType().InvokeMember("FullName", BindingFlags.GetProperty, null, doc, null) as string;
КР> if (!string.IsNullOrEmpty(Label) && Label.StartsWith(@"@:\"))
КР> {
КР> var ext = Path.GetExtension(Label);
КР> if (!string.IsNullOrEmpty(ext))
КР> {
КР> var index = ext.IndexOf('_');
КР> if (index >= 0)
КР> Label = Label.Substring(0, Label.Length - (ext.Length - index));
КР> }
КР> }
КР>
private string Label
{
get { return null; }
set { throw new NotImplementedException(); }
}