a1dc380d 5e97 2991 71aa dd646dfcd686 - akesseler/Plexdata.Utilities.Templates GitHub Wiki
Determines whether an argument is of a build-in system type.
Namespace: Plexdata.Utilities.Formatting.Extensions
Assembly: Plexdata.Utilities.Templates (in Plexdata.Utilities.Templates.dll) Version: 1.0.0
C#
public static bool IsSystemType(
this Object argument
)
- argument
- Type: System.Object
The object to determine its type for.
Type: Boolean
True is returned if the argument can be considered as a build-in system type. False is returned if either the argument is null
or it is not a build-in system type.
In Visual Basic and C#, you can call this method as an instance method on any object of type Object. 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).
This Method determines whether an argument is of a build-in system type. This determination is done by checking if the type's namespaces starts with System
or if the Scope Name of the type's property Module
equals CommonLanguageRuntimeLibrary.
ArgumentExtension Class
Plexdata.Utilities.Formatting.Extensions Namespace