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: 83e643a7f1a2aa058154b1838ad890aac40c1e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="iso-8859-1" ?>
<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>