StkCityDatabaseExtensions.CreatePlatforms Method (StkCityDatabase, StkCityDatabaseQuery) |
Creates platforms representing the cities in the database that match the input query.
Namespace:
AGI.Foundation.Platforms
Assembly:
AGI.Foundation.Platforms (in AGI.Foundation.Platforms.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic static List<Platform> CreatePlatforms(
this StkCityDatabase database,
StkCityDatabaseQuery query
)
<ExtensionAttribute>
Public Shared Function CreatePlatforms (
database As StkCityDatabase,
query As StkCityDatabaseQuery
) As List(Of Platform)
public:
[ExtensionAttribute]
static List<Platform^>^ CreatePlatforms(
StkCityDatabase^ database,
StkCityDatabaseQuery^ query
)
[<ExtensionAttribute>]
static member CreatePlatforms :
database : StkCityDatabase *
query : StkCityDatabaseQuery -> List<Platform>
Parameters
- database
- Type: AGI.Foundation.Stk.StkCityDatabase
The input STK City database. - query
- Type: AGI.Foundation.Stk.StkCityDatabaseQuery
The query used to select cities.
Return Value
Type:
List<Platform>A collection of platforms representing the cities in the database.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
StkCityDatabase. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Remarks
See Also