16:26 There are more and more things, you can't see the end every day ... Gradually, what do I start to do today? It seems that there is nothing ... 学 点 点 C #, the most basic theoretical knowledge: variable types have a few basic procedures: //l1-1.csusing system;
Class helporld {public static void main () {console.writeline ("Hello World"); // The most basic is this program, this Hello World doesn't know how many times}} // l1-2.csusing system; class InputOutput {public static void main () {console.write ("please enter your name:"); string strname = console.readline (); console.writeline ("Hello" strName); // and VB different, C # The string connection is used with , VB is used ... forget it! } //L1-3.csusing system;
Struct IP {public Byte B1, B2, B3, B4;} Class test {public static void main () {ip myip; myip.b1 = 192; myip.b2 = 168; myip.b3 = 1; myip.b4 = 101 Console.write ("{0}. {1}.", Myip.b1, myip.b2); console.write ("{0}. {1}", myip.b3, myip.b4); ///// Mainly here uses a parameter}}