fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@ -0,0 +1,20 @@
---
title: Literal Improvements
---
# Literal Improvements
C# 7.0 allows _ to occur as a ***digit separator*** inside number literals:
```
var d = 123_456;
var x = 0xAB_CD_EF;
```
You can put them wherever you want between digits, to improve readability. They have no effect on the value.
Also, C# 7.0 introduces ***binary literals***, so that you can specify bit patterns directly instead of having to know hexadecimal notation by heart.
```
var b = 0b1010_1011_1100_1101_1110_1111;
```