Skip to content

Instantly share code, notes, and snippets.

@Grabacr07
Created December 14, 2016 09:50
Show Gist options
  • Save Grabacr07/d666911e097d06d8cbae8c900952fabe to your computer and use it in GitHub Desktop.
Save Grabacr07/d666911e097d06d8cbae8c900952fabe to your computer and use it in GitHub Desktop.
.NET 4.6 プロジェクトだとエラーになるけど、PCL だとエラーにならない構造体
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