5 references to Last
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
TriviaDataFactory.CodeShapeAnalyzer.cs (1)
314if (!string.IsNullOrEmpty(triviaString) && SyntaxFacts.IsNewLine(triviaString.Last()))
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (2)
CSharpCodeGenerationHelpers.cs (2)
129if (tokenText.Length <= 2 || tokenText.Last() != '"') 138if (tokenText.Length <= 1 || tokenText.Last() != '"')
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (1)
VisualBasicSyntaxFacts.vb (1)
473Return IsValidIdentifier(identifier) AndAlso MakeHalfWidthIdentifier(identifier.First()) = "[" AndAlso MakeHalfWidthIdentifier(identifier.Last()) = "]"
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (1)
StringExtensions.vb (1)
67If text.Length > 2 AndAlso MakeHalfWidthIdentifier(text.First()) = "[" AndAlso MakeHalfWidthIdentifier(text.Last()) = "]" Then