MLStringType
class NatML.Types.MLStringType : MLFeatureType
Creating the Type
/// <summary>
/// Create a string feature type.
/// </summary>
/// <param name="length">String length.</param>
/// <param name="name">Feature name.</param>
MLTextType (int length, string name = null);Inspecting the Type
/// <summary>
/// Feature name.
/// </summary>
string name { get; }
/// <summary>
/// Feature data type.
/// </summary>
Type dataType { get; }Inspecting the String
Last updated