NET.isNETSupported

Check for supported Microsoft .NET Framework

Description

example

tf = NET.isNETSupported returns logical 1 (true) if a supported version of the Microsoft® .NET Framework is found. Otherwise, it returns logical 0 (false) and you cannot use the .NET Framework in MATLAB®.

Examples

collapse all

if ~NET.isNETSupported
    disp('Supported .NET Framework not found')
end
Introduced in R2013a