Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
DataStyle.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 namespace SiliconStudio.Core
4 {
5  /// <summary>
6  /// Specifies the style used for textual serialization when an array/list or a dictionary/map must
7  /// be serialized.
8  /// </summary>
9  public enum DataStyle
10  {
11  /// <summary>
12  /// Let the emitter choose the style.
13  /// </summary>
14  Any,
15 
16  /// <summary>
17  /// The normal style (One line per item, structured by space).
18  /// </summary>
19  Normal,
20 
21  /// <summary>
22  /// The compact style (style embraced by [] or {})
23  /// </summary>
24  Compact
25  }
26 }
The compact style (style embraced by [] or {})
Let the emitter choose the style.
The normal style (One line per item, structured by space).
DataStyle
Specifies the style used for textual serialization when an array/list or a dictionary/map must be ser...
Definition: DataStyle.cs:9