Files
codeql/csharp/old-change-notes/2021-06-16-qualified-names.md
Dave Bartolomeo fa40d59332 Move older change notes to old-change-notes
Now that change notes are per-package, new change notes should be created in the `change-notes` folder under the affected pack (e.g., `cpp/ql/src/change-notes` for C++ query change notes. I've moved all of the change note files that were added before we started publishing them in packs to an `old-change-notes` directory under each language, to reduce the temptation to add new change notes there.

I'm working on a document to describe how and when to create change notes for packs separately.
2021-12-14 12:35:04 -05:00

10 lines
615 B
Markdown

lgtm,codescanning
* The following has changed in `Type::getQualifiedName`/`Type::hasQualifiedName`:
- Type parameters now have the qualified name which is simply the name of the type
parameter itself. Example: in `class C<T> { }`, `T` has qualified name `T`.
- Constructed types now use qualified names for type arguments. For example, the
qualified name of `C<int>` is `C<System.Int32>`. This also includes array types
and pointer types.
- Nested types are now delimited by `+` instead of `.`. For example, the qualified
name of `Inner` in `class Outer { class Inner { } }` is `Outer+Inner`.