Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ImportedProjects
SVG
Commits
f519f708
Commit
f519f708
authored
Dec 25, 2015
by
HeinrichAD
Browse files
Split by comma, remove space in the end
Split by comma, remove space in the end #209 by ifcwebapp Pull Request from master
parent
8fc0a41b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/DataTypes/SvgUnitCollection.cs
View file @
f519f708
...
...
@@ -15,13 +15,7 @@ namespace Svg
{
public
override
string
ToString
()
{
string
ret
=
""
;
foreach
(
var
unit
in
this
)
{
ret
+=
unit
.
ToString
()
+
" "
;
}
return
ret
;
return
String
.
Join
(
","
,
this
.
Select
(
u
=>
u
.
ToString
()).
ToArray
());
}
public
static
bool
IsNullOrEmpty
(
SvgUnitCollection
collection
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment