public string[] GetLocations( Project.Hierarchy type )
public: array<String^>^ GetLocations( Project.Hierarchy type )
Parameters
- type
- Location hierarchy
Return Value
System.String object.
public string[] GetLocations( Project.Hierarchy type )
public: array<String^>^ GetLocations( Project.Hierarchy type )
string[] strLocations = oProject.GetLocations(Project.Hierarchy.Plant); Console.WriteLine(" Locations :"); foreach(string loc in strLocations) Console.WriteLine(" " + loc);