<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>C# Syntax by </title>
      <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp</link>
      <description>Zusammenfassung des C# Syntax</description>
      <language>en-us</language>
      <pubDate>2018-10-08 19:28:49 UTC</pubDate>
      <lastBuildDate>2026-02-27 21:09:57 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet-assets.s3.amazonaws.com/icons/Alarmclock.png</url>
      </image>
      <item>
         <title>bool</title>
         <author>dpfeiffer2</author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290641608</link>
         <description><![CDATA[<div>Wahrheitswert, true or false<br>bool wahrheit = true;</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:20:04 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290641608</guid>
      </item>
      <item>
         <title>FOR-Schleife</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290641682</link>
         <description><![CDATA[<div>--&gt;erhöht sich von selbst<br>--&gt;Kopfgesteuerte Schleife<br>Syntax: For (int i=1;i&lt;10;i++)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.Writeline(i);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.ReadLine();&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:20:23 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290641682</guid>
      </item>
      <item>
         <title>Datenstruktur</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290641830</link>
         <description><![CDATA[<div>Ist eine Datenstruktur die mehrere Werte in sich speichern kann.<br>int[] zahl = new int [10];<br>zahl [0] = 25;<br>For(i = 0; i &lt; zahl.Lenght; i++)<br>{<br>         Console.WriteLine("Geben Sie                  bitte eine Zahl ein");<br>          zahl[i] = Convert.ToInt16(Console.ReadLine));<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:20:55 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290641830</guid>
      </item>
      <item>
         <title>int</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290642102</link>
         <description><![CDATA[<div>für Ganzzahlen von -2.147.483.648 bis 2.147.483.647 (32 Bit<br>int z=15;<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:21:59 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290642102</guid>
      </item>
      <item>
         <title>Kleiner &lt; / Kleinerleich &lt;=</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290643072</link>
         <description><![CDATA[<div><strong>Größer &gt; / Größergleich &gt;=</strong><br>= Vergleichsoperatoren.&nbsp;<br>Vergleichen zwei Ausdrücke<br>Bsp:&nbsp; . &gt; 3 = beinhaltet alle größeren Zahlen exkl. 3</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:25:13 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290643072</guid>
      </item>
      <item>
         <title>string</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290643167</link>
         <description><![CDATA[<div>für Wörter oder Variablen<br>Umlaute (ä-ae, ü-ue, ö-oe)<br>string wort;<br>{&nbsp;<br>Console.WriteLine(Bitte gib dein Name ein: );<br>Console.ReadLine();<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:25:35 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290643167</guid>
      </item>
      <item>
         <title>Funktionen </title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290643174</link>
         <description><![CDATA[<div>Funktionen haben einen Rückgabe wert und in verschiedenen oder&nbsp; sind nur in einer Prozedur mehrmals aufrufbar.<br><br>public static int Zahlen ()<br>{<br>&nbsp; &nbsp; &nbsp; &nbsp; int zahl1 = 10;<br>        return zahl1;<br>}<br>Man kann sie mit "public","private" oder mit "protected" definieren.<br>Den Wert gibt man mit: return zahl1 zurück.<br>Aufruf in Main: Zahlen();</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:25:37 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290643174</guid>
      </item>
      <item>
         <title>DO-Schleife</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290643591</link>
         <description><![CDATA[<div>--&gt;Fußgesteuerte Schleife<br>Syntax: do<br>&nbsp; &nbsp; &nbsp; {Console.Writeline("Program<br>&nbsp; &nbsp; &nbsp; &nbsp; nochmal&nbsp; starten");<br>&nbsp; &nbsp; usereingabe=Console.Readline();&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}while(usereingabe=="JA");<br>Console.ReadLine();</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:27:23 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290643591</guid>
      </item>
      <item>
         <title>double</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290643793</link>
         <description><![CDATA[<div>für Gleitkommazahlen<br>double zahl = 2,4;<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:28:10 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290643793</guid>
      </item>
      <item>
         <title>Prozeduren</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290643926</link>
         <description><![CDATA[<div>Prozeduren sind Methoden die keinen Rückgabe wert haben und nur einmal aufrufbar sind.<br><br>static void Zahlen()<br>{<br>      string name;<br>      console.writeline("Bitte Namen: ");<br>      name = console.readline();<br>       console.writeline("Hallo " + name + "");<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:28:42 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290643926</guid>
      </item>
      <item>
         <title>WHILE-Schleife</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290645334</link>
         <description><![CDATA[<div>--&gt;Kopfgesteuerte Schleife<br>Syntax:&nbsp;string usereingabe="JA";<br>while(usereingabe=="JA")<br>&nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; Console.WriteLine("Hallo");<br>&nbsp; &nbsp; &nbsp;Console.WriteLine("Programm&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nochmal starten?");<br>&nbsp; &nbsp;usereingabe=Console.ReadLine();<br>&nbsp; &nbsp; &nbsp; }<br>Console.ReadLine();</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:34:18 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290645334</guid>
      </item>
      <item>
         <title> == Vergleich</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290646231</link>
         <description><![CDATA[<div>Überprüft zwei Werte, ob die miteinander übereinstimmen. <br> If(Namen == "Haus")<br> {</div><div> Console.Writeline("Haus");<br>Console.Readline();<br>}<br>else<br>{ Console.Writeline("Keine Übereinstimmung!")<br>.<br>.<br>.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:37:30 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290646231</guid>
      </item>
      <item>
         <title>long</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290646967</link>
         <description><![CDATA[<div>für größere Zahlen von -9.223.372.036.854.775.808 bis 9.223.372.036.854.775.807 &nbsp;<br>Long lZahl= 3.456.789;</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:40:05 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290646967</guid>
      </item>
      <item>
         <title>FOR-EACH-Schleife</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290647220</link>
         <description><![CDATA[<div>foreach (int c in a)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.WriteLine(c);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:40:54 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290647220</guid>
      </item>
      <item>
         <title>char</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290647878</link>
         <description><![CDATA[<div>für einzelne Zeichen (16 Bit)<br>char m;</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:43:14 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290647878</guid>
      </item>
      <item>
         <title>short</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290648607</link>
         <description><![CDATA[<div>für Zahlen von -32.768 bis 32.767&nbsp;<br>short zahl=10.000;</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:45:54 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290648607</guid>
      </item>
      <item>
         <title>IF-Anweisung</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290648854</link>
         <description><![CDATA[<div><em>Syntax:</em><br>if(Bedingung)<br>{<br>    Anweisungsblock;<br>}<br><br><em>Beispiele:</em> <br>{     <br>      string Name;       <br>     Console.Write("Name:  "); <br>     Name = Console.ReadLine();<br>     if(Name == "Messi")<br>     {<br>          Console.WriteLine("Cool!");<br>     }<br>     Console.WriteLine("Hallo, " +       Name);<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:46:54 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290648854</guid>
      </item>
      <item>
         <title>byte</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290648973</link>
         <description><![CDATA[<div>kann man für Zahlen zwischen 0 und 255 verwenden<br>Byte z=50;</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:47:15 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290648973</guid>
      </item>
      <item>
         <title> || Oder</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290650441</link>
         <description><![CDATA[<div>Mit dem Oder-Operator muss mindestens 1 der mehreren Anweisungen den Wert true zurückgeben.<br>If (zahl1 &gt; zahl2 || zahl2 == zahl1)<br>{<br>     Console.WriteLine("True");<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:52:22 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290650441</guid>
      </item>
      <item>
         <title>!= (ungleich</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290650652</link>
         <description><![CDATA[<div>-&gt;Prüft ob eine Variable nicht mit einem Wert übereinstimmt</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:53:03 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290650652</guid>
      </item>
      <item>
         <title>&amp; &amp; (und)</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290651163</link>
         <description><![CDATA[<div>wenn beide richtig sind, wird die Bedingung erfüllt (nur wenn beide richtig sind</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:55:07 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290651163</guid>
      </item>
      <item>
         <title>else if</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290651195</link>
         <description><![CDATA[<div><em>Syntax:</em><br><br>if (Bedingung)<br>{<br>&nbsp; &nbsp; &nbsp;Anweisung/en;<br>}<br>else if (Bedingung)<br>{<br>&nbsp; &nbsp; Anweisung/en;<br>}<br>else<br>{<br>&nbsp; &nbsp; &nbsp;Anweisung/en;<br>}<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:55:17 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290651195</guid>
      </item>
      <item>
         <title>= Zuweisung </title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290651605</link>
         <description><![CDATA[<div>&nbsp;der Wert des rechten Operanten wird dem linken Operanten zuweist und gibt den Wert als Ergebnis zurück.<br>Beide müssen denselben Datentypen angehören.<br><br>int i <br>i = 0<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 10:56:35 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290651605</guid>
      </item>
      <item>
         <title>Verschachtelte If-Anweisung</title>
         <author></author>
         <link>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290652657</link>
         <description><![CDATA[<div><em>Syntax:<br></em>{<br>if(Name == "Messi")<br>{&nbsp;<br>&nbsp; &nbsp; &nbsp;if(Passwort == "Fußball")<br>&nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Console.WriteLine("Du bist wirklich Messi!");<br>&nbsp; &nbsp; &nbsp;}<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-10-09 11:00:34 UTC</pubDate>
         <guid>https://padlet.com/dpfeiffer2/kmfoxz8pk1vp/wish/290652657</guid>
      </item>
   </channel>
</rss>
