コード例 #1
0
ファイル: UniDebug.cs プロジェクト: ToshikiImagawa/UniRedux
 public static SerializableStateElement ToSerialize <TState>(this TState state, bool isProperty = true)
 {
     return(StateReflection.Serialize(state, isProperty));
 }
コード例 #2
0
ファイル: UniDebug.cs プロジェクト: ToshikiImagawa/UniRedux
 public static string ToJson <TState>(this TState state)
 {
     return(ToJson(StateReflection.Serialize(state)));
 }