Array

string[,] PramIn = new string[2, 2];

string[,] PramIn = { { "@AAA", "AAA" }, { "@BBB", "BBB" } };

 

Enum

internal enum LogType
{
None = -1,
Error = 0,
Info = 1,
}



Struct

public struct LetterVariables
{
public string Name;
public string Plz;
}

 

Check auf Wert und Ausgabe von erstem oder zweitem Wert

("A" == "A" ? "" : "B")

 

Prüfen auf "#if DEBUG"

#if DEBUG
...
#else
...
#endif

 

String in eine ArrayList splitten

string sG0 = "A;B;C";
ArrayList oList = new ArrayList(sG0.Split(new char[] { ';' }));

 

Alter berechnen

public static int GetAgeFromDate(DateTime birthday)
{
   int years = DateTime.Now.Year - birthday.Year;
   birthday = birthday.AddYears(years);
   if (DateTime.Now.CompareTo(birthday) < 0)
   {   
      years--;
   }
   return years;
}

 

 

String mit einem Zeichen auffüllen

 

 

char pad = '0';
Month.ToString().PadLeft(2, pad)