private PuttyProfileProperty getOrCreate(string name)
        {
            PuttyProfileProperty property;

            if (!Properties.TryGetValue(name, out property))
            {
                return(Properties[name] = new PuttyProfileProperty(name));
            }
            return(property);
        }
Exemplo n.º 2
0
 private PuttyProfileProperty getOrCreate(string name)
 {
     PuttyProfileProperty property;
     if (!Properties.TryGetValue(name, out property))
     {
         return Properties[name] = new PuttyProfileProperty(name);
     }
     return property;
 }