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

Key: RSRP-57119
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Dmitry Lomov
Reporter: Sergey Coox
Votes: 0
Watchers: 0
Operations

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

smart completion does not complete

Created: 01 Feb 08 16:18   Updated: 28 Aug 08 14:33
Component/s: Code Completion
Fix Version/s: 4.5
Security Level: Everybody (All jira users)

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


 Description  « Hide
public class SettingsTable : ISettingsTable
  {
    private readonly Dictionary<string, bool> myBools = new Dictionary<string, bool>();
    private readonly HashSet<string> myEncryptedSettings = new HashSet<string>();
    private readonly Dictionary<string, int> myInts = new Dictionary<string, int>();
    private readonly Dictionary<string, string> myStrings = new Dictionary<string, string>();

    protected Dictionary<string, bool> Bools { get { return myBools; } }
    protected HashSet<string> EncryptedSettings { get { return myEncryptedSettings; } }
    protected Dictionary<string, int> Ints { get { return myInts; } }
    protected Dictionary<string, string> Strings { get { return myStrings; } }


    public SettingsTable()
    {
    }

    public SettingsTable( SettingsTable settings )
    {
      myBools.AddRange( settings.Bools );
      myInts.AddRange( settings.Ints );
      myStrings.AddRange( settings.Strings );
      myEncryptedSettings.AddRange( settings.{caret}EncryptedSettings );
    }


 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.