"hello world"
Hello, what you’re trying to do won’t work because you’re passing Label11.Text
(the same name as the label) inside the label itself. In this case, a circular reference will occur. In other words, you’re trying to display text from a label that references itself.
To display text in a label, you can reference another label that contains text or use the traditional method, like Label11
.
Do this
Or