blob: de08d24537b1f067319681e00ed9d3b800dd832f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0842: Automatically implemented property `S.Value' cannot be used inside a type with an explicit StructLayout attribute
// Line: 10
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Explicit)]
class S
{
public int Value {
get; set;
}
}
|