| (MFIdentifier to String) | Original value string value can be got by explicit request. Allowing conversion and assignment into string. string s = (string)SomeIdent; If only ID number available, returns it as a string. |
| (Int32 to MFIdentifier) | Implicit conversion of int to Ident, allowing: MFIdentifier x = 109; |
| (Int64 to MFIdentifier) | Implicit conversion of long int to Ident, allowing: MFIdentifier x = 109; |
| (MFBuiltInDocumentClass to MFIdentifier) | Implicit cast from M-Files enum to identifier. |
| (MFBuiltInObjectClass to MFIdentifier) | Implicit cast from M-Files enum to identifier. |
| (MFBuiltInObjectType to MFIdentifier) | Implicit cast from M-Files enum to identifier. |
| (MFBuiltInPropertyDef to MFIdentifier) | Implicit cast from M-Files enum to identifier. |
| (MFBuiltInUserGroup to MFIdentifier) | Implicit cast from M-Files enum to identifier. |
| (MFBuiltInValueList to MFIdentifier) | Implicit cast from M-Files enum to identifier. |
| (MFBuiltInView to MFIdentifier) | Implicit cast from M-Files enum to identifier. |
| (MFIdentifier to Int32) | Implicit conversion to int identifier, allowing direct use in place of int. |
| (String to MFIdentifier) | Implicit conversion of string to MFIdentifier. Allowing: MFIdentifier x = "string"; |