This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace TestForUnxTime | |
{ | |
//reference : https://msdn.microsoft.com/ko-kr/library/system.datetimeoffset.fromunixtimeseconds(v=vs.110).aspx | |
class MainClass | |
{ | |
public static void Main(string[] args) | |
{ | |
//before Net 4.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//: Playground - noun: a place where people can play | |
import UIKit | |
enum conwaySequenceError: ErrorType { | |
case outOfBoundError | |
case notCalulateHandledError | |
case logicalUnHandledError | |
} |