diff --git a/docs/fundamentals/runtime-libraries/system-type-gettype.md b/docs/fundamentals/runtime-libraries/system-type-gettype.md index 7bb9efc978d09..61a3db5da34f9 100644 --- a/docs/fundamentals/runtime-libraries/system-type-gettype.md +++ b/docs/fundamentals/runtime-libraries/system-type-gettype.md @@ -83,7 +83,7 @@ The combination of `assemblyResolver` and `typeResolver` that you provide must b "System.Collections.Generic.Dictionary`2[System.String,[MyNamespace.MyType, MyAssembly]]" ``` -Notice that `MyType` is the only assembly-qualified type argument. The names of the and classes are not assembly-qualified. Your `typeResolver` must be able handle either an assembly or `null`, because it will receive `null` for and . It can handle that case by calling an overload of the method that takes a string, because both of the unqualified type names are in mscorlib.dll/System.Private.CoreLib.dll: +Notice that `MyType` is the only assembly-qualified type argument. The names of the and classes are not assembly-qualified. Your `typeResolver` must be able to handle either an assembly or `null`, because it will receive `null` for and . It can handle that case by calling an overload of the method that takes a string, because both of the unqualified type names are in mscorlib.dll/System.Private.CoreLib.dll: :::code language="csharp" source="./snippets/System/Type/GetType/csharp/source.cs" id="Snippet1"::: :::code language="fsharp" source="./snippets/System/Type/GetType/fsharp/source.fs" id="Snippet1":::