Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0636-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f49380a548804cd6f1d310807f45f417ffdc657a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0636: The FieldOffset attribute can only be placed on members of types marked with the StructLayout(LayoutKind.Explicit)
// Line: 10

using System;
using System.Runtime.InteropServices;

namespace cs0636 {
	class GValue {
		[FieldOffset (4)] 
                public const int value = 2;
	}
}