NN

Results 120 issues of NN

For instance Convert.ToString(string) doesn't do anything and can be annotated as: ```cs [ContractAnnotation("s: notnull => notnull; s: null => null")] public static string ToString(string s); // { return s; }...

Create methods never return null. E.g. https://docs.microsoft.com/en-us/dotnet/api/system.security.cryptography.des.create?view=netframework-4.7.2#System_Security_Cryptography_DES_Create https://docs.microsoft.com/en-us/dotnet/api/system.security.cryptography?view=netframework-4.7.2 Samples ```cs var des = DES.Create(); var desEncryptor = des.CreateEncryptor(); // Possible NRE var aes = Aes.Create(); var aesEncryptor = aes.CreateEncryptor(); //...

C99 поддерживает создание временного объекта непосредственно при передаче. Было бы хорошо иметь поддержку в C++. ```cpp int *p = (int[]){2, 4}; // creates an unnamed static array of type int[2]...

If it's about generated code change, what programming language? C#, Java **Describe the problem you are trying to solve.** Generated code could be annotated with NotNull , CanBeNull attributes which...

enhancement
c#
java
P3

http://jashkenas.github.com/coffee-script/#scripts You can use But you don't get highlight as you get in .coffee files.

Compare javascript: http://img834.imageshack.us/img834/6505/56073891.png And coffeescript: http://img42.imageshack.us/img42/4451/14756485.png It could be nice to add jquery completion.

Currently it builds a zip file without signing. It would be nice to have a crx file using BuildCrx tool

[RCS1077](https://github.com/JosefPihrt/Roslynator/blob/main/docs/analyzers/RCS1077.md) no longer relevant for modern .NET. It should be disable when project targets .NET Core 3.1 or .NET 5.0 and above. https://github.com/dotnet/runtime/issues/38418 https://github.com/JosefPihrt/Roslynator/issues/736

Area-Analyzers

EVT_SENT and EVT_SENDING both have the same value. The event is triggered before the data is actually sent. There should be different value for two events where EVT_SENDING is triggered...

bug