.NET Generic Classes in MATLAB - MATLAB & Simulink (original) (raw)
Create .NET generic classes, invoke .NET generic methods in MATLABĀ®
Generic classes are a feature of the C# programming language. These topics show how to use generic classes in MATLAB.
Functions
NET.createGeneric | Create instance of specialized .NET generic type |
---|---|
NET.invokeGenericMethod | Invoke generic method of object |
NET.convertArray | (Not recommended) Convert numeric MATLAB array to .NET array |
Classes
NET.GenericClass | Represent parameterized generic type definitions |
---|
Topics
- Create .NET Collections
This example uses twoSystem.String
arrays,d1
andd2
, to create a generic collection list. - Convert .NET Collections to MATLAB Arrays
Use theToArray
method of theSystem.Collections.Generic.List
class to convert a collection to an array. - Create .NET Arrays of Generic Type
This example creates a .NET array ofList<Int32>
generic type. - Display .NET Generic Methods Using Reflection
showGenericMethods
function example. - .NET Generic Classes
Generics are classes and methods that have placeholders (type parameters or_parameterized types_) for one or more types. - Accessing Items in .NET Collections
Use theItem
property of theSystem.Collections.Generic
List
class to get or set an element at a specified index. - Call .NET Generic Methods
ExampleNetDocGeneric.SampleClass
source code.