don't use C#6 language features for the time being

This commit is contained in:
Armin Sander
2015-09-25 10:48:46 +02:00
parent cefd6ccb96
commit 2e908bfdee
7 changed files with 92 additions and 35 deletions

View File

@@ -23,7 +23,14 @@ namespace Facebook.CSSLayout
public readonly float Width;
public readonly float Height;
internal float width => Width;
internal float height => Height;
internal float width
{
get { return Width; }
}
internal float height
{
get { return Height; }
}
}
}