1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
unsafe public partial class spa : Form
{
Audio* begAudio;
Letters* begLetters;
string path = @"tmp.txt";
public spa()
{
InitializeComponent();
}
private void PrepareTextToSpeach_Click(object sender, EventArgs e)
{
for (int i = 0; i < Txt.Text.Length; i++)
{
char c = Txt.Text[i];
if (begLetters == null)
{
Letters begLetters = new Letters;
}
else
{
}
}
}
}
It doesn't allow "Letters begLetters = new Letters"
edited 5×, last 18.06.13 06:21:43 pm
SOS!!! Linked list with pointers doesn't work C#
1 
Offline
AssassinLV