This website works better with JavaScript.
Home
Explore
Help
Sign In
ligan
/
DocX
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Update HelperFunctions.cs
fixed lastChar initialization
master
Jan Bernlöhr
9 years ago
parent
af420cc0cc
commit
d3ab4fbadf
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
1
1
DocX/HelperFunctions.cs
+ 1
- 1
DocX/HelperFunctions.cs
View File
@@ -550,7 +550,7 @@ namespace Novacode
return newRuns; //I dont wanna get an exception if text == null, so just return empy list
}
char lastChar =
null
;
char lastChar =
'\0'
;
foreach (char c in text)
{
Write
Preview
Loading…
Cancel
Save