You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -402,7 +398,7 @@ In the previous examples, the stubs have been generated from interfaces. You can
402
398
}
403
399
```
404
400
405
-
Inthestubgeneratedfromthisclass, youcansetdelegate methods for DoAbstract() and DoVirtual(), butnotDoConcrete().
401
+
Inthestubgeneratedfromthisclass, youcansetdelegate methods for `DoAbstract()` and `DoVirtual()`, butnot`DoConcrete()`.
406
402
407
403
```csharp
408
404
// unit test
@@ -431,13 +427,13 @@ The stub types are designed to provide a smooth debugging experience. By default
431
427
432
428
## Stub limitations
433
429
434
-
1.Methodsignatureswithpointersaren't supported.
430
+
-Methodsignatureswithpointersaren't supported.
435
431
436
-
2.Sealedclassesorstaticmethodscan't be stubbed because stub types rely on virtual method dispatch. For such cases, use shim types as described in [Use shims to isolate your application from other assemblies for unit testing](../test/using-shims-to-isolate-your-application-from-other-assemblies-for-unit-testing.md)
432
+
-Sealedclassesorstaticmethodscan't be stubbed because stub types rely on virtual method dispatch. For such cases, use shim types as described in [Use shims to isolate your application from other assemblies for unit testing](../test/using-shims-to-isolate-your-application-from-other-assemblies-for-unit-testing.md)
0 commit comments