c#enumerable class - 与VBA兼容

tpa*_*ale 7 .net c# c#-to-vb.net

任何人都可以告诉我如何编写C#可枚举类,以便Excel VBA中的"for each"构造正常工作吗?我尝试了一个名为People的测试类,它实现了IEnumerable并包含一个Person对象数组."foreach"构造在C#中运行良好,但在VBA中我只能循环使用老式的方式.

这个VBA代码工作得很好:

Dim P As Person
Dim PP As New People

For i = 0 To PP.Count - 1
    Set P = PP(i)
    Debug.Print P.firstName + " " + P.lastName
Next i
Run Code Online (Sandbox Code Playgroud)

但这在运行时失败("对象不支持此属性或方法"):

For Each P In PP
    Debug.Print P.firstName + " " + P.lastName
Next P
Run Code Online (Sandbox Code Playgroud)

下面是C#代码(在VS 2008中可见的已编译COM,用于Excel VBA - Office 2010):

using System;
using System.Collections;
using System.Runtime.InteropServices;

public class Person
{
    public Person(string fName, string lName)
    {
        this.firstName = fName;
        this.lastName = lName;
    }
    public string firstName;
    public string lastName;
}

public class People : IEnumerable
{
    private Person[] _people;                           // array of people
    public Int32 Count() { return _people.Length; }     // method to return array size

    // indexer method to enable People[i] construct, or in VBA: People(i)
    public Person this[Int32 PersonNo] { get { return _people[PersonNo]; } }

    // constructor - hardcode to initialize w 3 people (for testing)
    public People()
    {
        _people = new Person[3]
        {
            new Person("John", "Smith"),
            new Person("Jim", "Johnson"),
            new Person("Sue", "Rabon"),
        };
    }

    // test method just to make sure the c# foreach construct works ok
    public void Test() 
    { 
        foreach (Person P in this) System.Diagnostics.Debug.WriteLine(P.firstName + " " + P.lastName); 
    }

    //implementation of basic GetEnumerator
    IEnumerator IEnumerable.GetEnumerator()
    {
        return (IEnumerator)GetEnumerator();
    }

    //implementation of People GetEnumerator
    public PeopleEnum GetEnumerator()
    {
        return new PeopleEnum(_people);
    }
}

// People Enumerator class definition
public class PeopleEnum : IEnumerator
{
    public Person[] _people;

    int position = -1;

    public PeopleEnum(Person[] list)
    {
        _people = list;
    }

    public bool MoveNext()
    {
        position++;
        return (position < _people.Length);
    }

    public void Reset()
    {
        position = -1;
    }

    object IEnumerator.Current
    {
        get
        {
            return Current;
        }
    }

    public Person Current
    {
        get
        {
            try
            {
                return _people[position];
            }
            catch (IndexOutOfRangeException)
            {
                throw new InvalidOperationException();
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

Ree*_*sey 5

尝试添加[DispId(-4)]到您的GetEnumerator()方法.这标志着它是DISPID_NEWENUM成员.为了让VBA使用For Each处理集合,它需要通过COM 实现_newEnum.

这可以通过实现一个枚举器并使用适当的DispId来实现.这通常通过实现具有此指定的自定义接口来完成,尽管还有其他可用的机制.

  • 感谢您的快速回复......我尝试了快速修复 - 即将 [DispId(-4)] 添加到 GetEnumerator。现在错误消息是“未定义属性让过程且属性获取过程未返回对象”。我尝试向 People 索引器添加一个“set”方法,但这没有帮助。如果还有其他快速尝试的方法,请告诉我。同时,我正在关注您的其他建议链接(但这需要更多时间来消化)。谢谢 (2认同)