Created
December 14, 2016 09:50
-
-
Save Grabacr07/d666911e097d06d8cbae8c900952fabe to your computer and use it in GitHub Desktop.
.NET 4.6 プロジェクトだとエラーになるけど、PCL だとエラーにならない構造体
This file contains hidden or 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 Ufcpp | |
{ | |
public struct Ufcpp | |
{ | |
private readonly DateTimeOffset _dateTime; | |
public Ufcpp(DateTimeOffset dateTime) | |
{ | |
this._dateTime = dateTime; | |
} | |
public Ufcpp(DateTime dateTime) | |
{ | |
// CS0171 | |
// Field 'Ufcpp._dateTime' must be fully assigned before control is returned to the caller | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment