Returns collection of all available assets.
SYNTAX
public static Asset[] GetAllAssets ()
RETURN
Asset[]
EXAMPLE
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Drawing; using PTLRuntime.NETScript; namespace GetAllAssetsExamples { public class GetAllAssetsExamples : NETStrategy { public override void OnQuote() { Asset[] ass; ass = Asset.GetAllAssets(); for (inti=0;ass.Length-1>i;i++) { Print(ass[i].ToString()); } } } }