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

cs0666.xml « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa6d6b6a43de83e8573887502e2665dc80f8e486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<ErrorDetails>
	<Summary>
		<p>
			It is not permissable to have a protected member 
			inside a struct.
		</p>
	</Summary>
	<Details>
		<p>
			As structs are implicitly declared as <b>sealed</b> they
			can not have protected members. Usually you can fix this
			error by changing the scope of the variable.
		</p>
	</Details>
</ErrorDetails>