Notepad++ 5.8.3 with FunctionList on Windows 7

Many thanks for advice Ariadie and Claude!
Notepad++ 5.8.3 works perfect with FunctionList_2_1 UNICODE.

Please note that setting on Windows 7 is saved by path
%APPDATA%\Notepad++\plugins\config\FunctionListRules.xml
So you can always backup or restore your personal settings.

Enjoy it!

Specified cast is not valid at System.Linq.Enumerable. MoveNext

Yes, it's true. Pseudo-code below will not work with buildin types (int, long, double and so on) with InvalidCastException.


int[] a = new int[]{ 1, 2, 3 };

IEnumerable<double> d = a.Cast<double>();


foreach (double x in d) {

System.Console.WriteLine(x);

}
To resolve the issue you should rewrite second string with explicit cast as below

IEnumerable<double> d = a.Select(i => (double)i);

HOWTO: Repair Logitech M325 Mouse

FixIt says that you will find single screw under CE label. It isn't always true.