Skip to content

Commit

Permalink
Fix VS extension build
Browse files Browse the repository at this point in the history
  • Loading branch information
qwertie committed Dec 25, 2020
1 parent 74879b8 commit d8af6a0
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,9 @@ public char this[int index]
{
get { return _ss[index]; }
}
public int Count
{
get { return _ss.Length; }
}
public int Count => _ss.Length;
public bool IsEmpty => Count != 0;

public IEnumerator<char> GetEnumerator()
{
for (int i = 0; i < Count; i++)
Expand Down

0 comments on commit d8af6a0

Please sign in to comment.