摘要:
Namespaces are heavily used in C# programming in two ways.First, the .NET Framework uses namespaces to organize its many classes, as follows:System.Co... 阅读全文
摘要:
// -Operators can be roughly classified into three categories:// -Unary — Act on single operands// -Binary — Act on two operands// -Ternary — Act on t... 阅读全文
摘要:
// Literal Values// TYPE(S) CATEGORY SUFFIX EXAMPLE/ALLOWED VALUES// bool boolean none true or false// int, uint, long, ulong integer none 100// uint,... 阅读全文
摘要:
// DATA TYPES//// Built-In Types(Simple)// -Numeric// -Character// -Boolean//// Custom Types(Complex)// -Structures// -Classes// -Interfaces// -Enumer... 阅读全文
摘要:
// C# syntax for declaring variables merely specifi es the type and variable name:// ;////// Simple Types//// Integer Types// TYPE ALIAS FOR ALLOWED... 阅读全文