I have a large type array, like :
public Type FooType
strName as string
strKey as string
strValue as string
end Type
dim m_fooTypes(0 to 50000) as FooType
now I wish to sort the m_fooTypes according to strKey(Ascending). how to quickly sort it? i know i can use bubble sort, but i wish to make it as fast as it can :confused:
