repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
tag rc1
[mcs.git]
/
errors
/
cs0188.cs
blob
00d508ee340af4e326b6c303f010d9f34302112c
1
// cs0188.cs: The `this' object cannot be used before all of its fields are assigned to
2
// Line: 6
3
4
struct
Sample
{
5
public
Sample
(
string
text
) {
6
Initialize
();
7
this
.
text
=
text
;
8
}
9
10
void
Initialize
() {
11
}
12
13
string
text
;
14
}