static void Main(string[] args) { // Console.WriteLine("WSB"); first_name.namespace_1 ob = new first_name.namespace_1(); Console.ReadKey(); }
static void Main(string[] args) { Console.WriteLine("WSB"); first_name.namespace_1 ob = new first_name.namespace_1(); ob.method(); namespace_2.method(); Outer.Middle.Inner.Prog ob3 = new Outer.Middle.Inner.Prog(); Console.WriteLine("Suma Wynosi: {0}", ob3.Add(3, 6)); Console.ReadKey(); }
static void Main(string[] args) { //kopiowanie tablic /*int []tab= { 1,2,3,4,5}; * int[] tabCopy = new int[7]; * * foreach (int item in tabCopy) * { * Console.WriteLine("{0}", item); * } * * tab.CopyTo(tabCopy, 2); * * foreach (int item in tabCopy) * { * Console.WriteLine("{0}", item); * } * * int[] tabCopy1 = new int[7]; * * Array.Copy(tabCopy, tabCopy1, tabCopy.Length) ; * * foreach (int item in tabCopy1) * { * Console.WriteLine("{0}", item); * } */ //typ wartościowy /*int a = 10; * int b = a; * * a--; * b++; * * Console.WriteLine(a); * Console.WriteLine(b); * * //typ referencyjny * * int[] tabA = { 1, 2, 3 }; * int[] tabB = tabA; * * tabA[0] = 100; * tabB[1] = 200; * * Console.WriteLine("tabA:"); * foreach (int item in tabA) * { * Console.WriteLine(item); * } * * Console.WriteLine("tabA:"); * foreach (int item in tabB) * { * Console.WriteLine(item); * } * * string text1 = "10"; * string text2 = text1; * * text1 += "Janusz"; * * Console.WriteLine(text1); * Console.WriteLine(text2); */ /* * Console.Title = "Modyfikacja konsoli"; * * Console.WriteLine("WSB"); * Console.Clear(); * Console.ForegroundColor = ConsoleColor.Red; * Console.WriteLine("WSB"); * Console.BackgroundColor = ConsoleColor.Yellow; * Console.WriteLine("\tWSB\t"); * Console.ResetColor(); * Console.WriteLine("\tWSB\t"); * Console.ReadKey(); */ /*uint number=0; * string x; * * while (true) * { * * Console.Write("Podaj liczbę całkowitą: "); * x = Console.ReadLine(); * * * try * { * number = uint.Parse(x); * break; * } * catch (Exception e) * { * Console.ForegroundColor = ConsoleColor.Red; * Console.WriteLine("Error: {0}", e.Message); * Console.ResetColor(); * * } * * } * Console.ForegroundColor = ConsoleColor.Green; * Console.WriteLine("Podałeś prawidłową liczbę: {0}.", number); * Console.ResetColor(); * */ //System.Console.WriteLine("WSB"); first_name.namespace_1 ob1 = new first_name.namespace_1(); ob1.Show(); namespace_2 ob2 = new namespace_2(); ob2.Show(); }
static void Main(string[] args) { /* * //kopiowanie tablic * int[] tab = { 1, 2, 3, 4, 5 }; * int[] tabcopy = new int[7]; * * foreach (int item in tabcopy) * { * Console.Write("{0} ", item ); * } * * Console.WriteLine(); * //tab.CopyTo(tabcopy, 2); //od drugiego indeksu w tablicy masz wsadzic tą tablice * foreach (int item in tabcopy) // przy 2 bedzie 0 0 1 2 3 4 5 * { * Console.Write("{0} ", item); * } * * //Array.Copy(tab, tabcopy, tab.length) * Array.Copy(tab, 0, tabcopy, 1 ,5); // skąd ma skopiować, od którego miejsca, do kąd, od kt zaczac, jak duzo znakow * Console.WriteLine(); * foreach (int item in tabcopy) * { * Console.Write("{0} ", item); * } * */ //typy wartościowe i referencyjne //typ wartościowy /* * int a = 10; * int b = a; * * a--; * b++; * * Console.WriteLine(a); //9 * Console.WriteLine(b); //11 * * //typ referencyjny * * int[] tabA = { 1, 2, 3 }; * int[] tabB = tabA; * * tabA[0] = 100; * tabB[1] = 200; * * //przez opcje copy to tworzy sie nowe miejsce w pamieci, przez operator wykorzystawana jest ta sama * * Console.WriteLine("\ntabA"); * foreach (int item in tabA) * { * Console.Write("{0} ", item); * } * Console.WriteLine("\n\ntabB"); * foreach (int item in tabB) * { * Console.Write("{0} ", item); * } * * Console.WriteLine(); * string text1 = "10 "; * string text2 = text1; * * text1 += "Janusz"; * * Console.WriteLine(text1); //10 Janusz * Console.WriteLine(text2); //10 * * * * */ /* * * //skróty klawiszowe ctrl d duplikacja, z altem przesuwanie * Console.Title = "Modyfikacja Konsoli"; // zmiana nazwy konsooli u góry * Console.WriteLine("WSB"); * Console.Clear(); // czyszczenie konsoli * Console.ForegroundColor = ConsoleColor.Green; * Console.WriteLine("WSB"); * Console.BackgroundColor = ConsoleColor.Blue; * Console.WriteLine("\tWSB\t"); * Console.ResetColor(); * Console.WriteLine("WSB"); */ /* * //wyjątki numer 1 * // będzie ciągle powtarzac dopoki nie wyjdzie prawdiłowa liczba * int Pętla = 2; * uint Number =0; // jak nie bd dzialac przypisac wartosc 0 * string X; * while (Pętla == 2) //przy while można używać true * { * Console.ResetColor(); * Console.Write("Podaj liczbe całkowita: "); * X = Console.ReadLine(); * Pętla = 1; * try * { * Number = uint.Parse(X); * } * catch(Exception e) * { * Console.ForegroundColor = ConsoleColor.Red; * Console.WriteLine("\nError: {0}", e.Message); * Pętla = 2; * } * } * Console.Clear(); * Console.ForegroundColor = ConsoleColor.Green; * Console.WriteLine("\nLiczba całkowita {0}", Number); */ //namespace/ przestrzenie nazw //Console.WriteLine("wsb"); //bez using system trzeba dodac .system first_name.namespace_1 ob = new first_name.namespace_1(); ob.Show(); namespace_2 ob1 = new second_name.namespace_2(); ob1.Show(); Console.ReadKey(); }