ref object  ref 为把 值类型 转换为 应用 类型 使用时 先 赋值给 参数, 然后 使用 ref 参数

解决方案 »

  1.   

    自己作的ActiveX控件,用VC++7.0 开发的,控件中包含一个方法,
    需要将一个数据块从外部传递进来,该参数使用的是VARIANT,
    在delphi 和 vc中都可以调用。现在要在C#下使用,C#将VARIANT类型映射为 object ,现在传递什么
    参数进去都不对,要不就是类型不匹配,要不就是传递进去的数据不知道
    该怎么解析(在控件内部)
      

  2.   

    传递到 ref 参数的参数必须最先初始化。将此方法与 out 参数相比,后者的参数在传递到 out 参数之前不必显式初始化。属性不是变量,不能作为 ref 参数传递。如果两种方法的声明仅在它们对 ref 的使用方面不同,则将出现重载。但是,无法定义仅在 ref 和 out 方面不同的重载。例如,以下重载声明是有效的:class MyClass 
    {
       public void MyMethod(int i) {i = 10;}
       public void MyMethod(ref int i) {i = 10;}
    }
    但以下重载声明是无效的:class MyClass 
    {
       public void MyMethod(out int i) {i = 10;}
       public void MyMethod(ref int i) {i = 10;}
    }
    有关传递数组的信息,请参见使用 ref 和 out 传递数组。示例
    // cs_ref.cs
    using System;
    public class MyClass 
    {
       public static void TestRef(ref char i) 
       {
          // The value of i will be changed in the calling method
          i = 'b';
       }   public static void TestNoRef(char i) 
       {
          // The value of i will be unchanged in the calling method
          i = 'c';
       }   // This method passes a variable as a ref parameter; the value of the 
       // variable is changed after control passes back to this method.
       // The same variable is passed as a value parameter; the value of the
       // variable is unchanged after control is passed back to this method.
       public static void Main() 
       {
       
          char i = 'a';    // variable must be initialized
          TestRef(ref i);  // the arg must be passed as ref
          Console.WriteLine(i);
          TestNoRef(i);
          Console.WriteLine(i);
       }
    }
    输出
    b
    b
      

  3.   

    楼上的老兄,我现在的问题是怎么向控件传送数据
    ref 和 out之间的区别我已经理解了
    多谢