摘要:
1、在记事本中编写代码。 using System; namespace HelloWorld { public class Program { static void Main(string[] args) { Console.WriteLine("Hello,World"); ... 阅读全文
摘要:
1、在记事本中编写IL代码如下:.assembly HelloWorld{}.assembly extern mscorlib{}.method public static void Main(string[] args) { .entrypoint .maxstack 8 ldstr "Hello,World" call void [mscorlib]System.Console::WriteLine(string) call valuetype [mscorlib]System.ConsoleKeyInfo [mscorlib]System.Console::... 阅读全文
摘要:
分配在栈上、派生于System.ValueType的值类型:● 简单类型,比如int,uint,byte,sbyte,short,long,ulong,char,float,double,decmial,bool都属于值类型。简单类型对应BCL基类库的别名,比如byte对应System.Byte,short对应System.Int16等。● 结构和枚举属于值类型。 什么是BCL基类库:Base ... 阅读全文