Nick Martyshchenko
- Total activity 19
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 7
-
Created [Build 5.0.1645.3] R# warn: 'Empty static constructor is redundant' probably need revisit
R# warn about Empty static constructor is redundant and suggest remove constructor. Removing constructor can change class behavior dramatically. Please read The differences between static construct... -
Created [R#: 5.0.1534.3] Incorrent "Inconsistent accessibility" for nested classes bug?
Look at the following code fragment: public static class TypeIO { private delegate void WriterDlgt(BinaryWriter bw, object val); private delegate object ReaderDlgt(BinaryReader br); pr... -
Created [R#: 5.0.1532.23] Move declarations to namespace bug in conjunction with #region / #endregion
HiConsider folowing fragment: #region Used namespaces using System.Windows.Forms; #endregion namespace ObjectMonitor.UserDecodeTables { public partial class UserDefinedProtocolForm : ... -
Created Incorrect Loop-to-LINQ conversion in R#: 5.0.1530.25
Hi,R# suggest convert following code: var zonesIndex = new Dictionary<Guid, int>(); for (int i = 0; i < zoneArr.Length; i++) zonesIndex.Add(zoneArr[i].Id, i); into var zonesIndex = zoneArr.ToDict... -
Created Add xml-docs comments generate incorrect placeholder
Hi,I havepublic class ArmCommandTemplateT2<T,U> ...using action "Add xml-docs comments" gives me:/// <typeparam name="U"></param>instead of/// <typeparam name="U"></typeparam>R#: 5.0.1530.25 -
Created For-loop can be converted into foreach-loop suggestion in R# 5.0
Hi,I noticed new suggestion in R# 5.0 which suggest me to convert for-loop into foreach-loop for my array.There are performance penalty in such suggestion (you can check yourself). Look at Kevin Ra...