Speichern Sie den Inhalt eines Textfelds in einem Array

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Speichern Sie den Inhalt eines Textfelds in einem Array

by Anonymous » 06 Apr 2025, 18:43

Wie können Sie den Inhalt eines Textfelds in einem Array in C#? < /p>
speichern

Code: Select all

string[] myArray = new string[1];
myArray[0] = textBox1.Text;
Ich möchte die Details in einer JSON -Datei speichern.

Top