public static HLArrayElementLocation Create(HLLocation pInstance, HLLocation pIndex, HLType pElementType)
 {
     HLArrayElementLocation location = new HLArrayElementLocation(pElementType);
     location.mInstance = pInstance;
     location.mIndex = pIndex;
     location.mElementType = pElementType;
     return location;
 }
Beispiel #2
0
        public static HLArrayElementLocation Create(HLLocation pInstance, HLLocation pIndex, HLType pElementType)
        {
            HLArrayElementLocation location = new HLArrayElementLocation(pElementType);

            location.mInstance    = pInstance;
            location.mIndex       = pIndex;
            location.mElementType = pElementType;
            return(location);
        }