History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-40903
Type: Bug Bug
Status: Open Open
Priority: Normal Normal
Assignee: Sergey Shkredov
Reporter: Serge Baltic
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
ReSharper

Encapsulate Field: Warned About Naming the Property "Attribute" As It Conflicts With the Class, Why?

Created: 19 May 07 21:55   Updated: 05 Feb 08 20:37
Component/s: Refactorings - Encapsulate Field
Fix Version/s: 4.0
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown


 Description  « Hide
There were actually no conflicts at all.

 All   Comments   Work Log   Change History      Sort Order:
Olga Lobacheva - 04 Jun 07 23:03
using System;
using System.Reflection;

public class I
{
public int myAttribute;

public void F()

{ Attribute.GetCustomAttribute((MemberInfo)null, null, true); }

}