IsArrayType static method
Converts a MAPI Integer value.
The String value.
Determines whether MapiPropertyType is an array type.
Type of the mapi.
Implementation
// static object ParseMapiIntegerValue(String s)
// {
// int intValue;
// if (Int32.TryParse(s, NumberStyles.Integer, CultureInfo.InvariantCulture, out intValue))
// {
// return intValue;
// }
// else
// {
// return s;
// }
// }
/// <summary>
/// Determines whether MapiPropertyType is an array type.
/// </summary>
/// <param name="mapiType">Type of the mapi.</param>
/// <returns>True if this is an array type.</returns>
static bool IsArrayType(MapiPropertyType? mapiType) {
return MapiTypeConverterMap.Member![mapiType!]!.IsArray;
}