Need a sample function implement for array interface member...
        Posted  
        
            by Nano HE
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Nano HE
        
        
        
        Published on 2010-03-09T06:24:46Z
        Indexed on 
            2010/03/09
            6:36 UTC
        
        
        Read the original article
        Hit count: 212
        
I have a interface member like this.
AppInterface.cs
ObjLocation[] ArrayLocations { get; }
App.cs
public ObjLocation[] ArrayLocations
        {
            get
            {
                 return **something**;
            }
        }
I dont know how to complete it, Or there is another way to implement the array members.
Then It can pass the compiler. thank you.
© Stack Overflow or respective owner