App1.App1_WindowsPhone_XamlTypeInfo.XamlUserType.AddMemberName C# (CSharp) Method

AddMemberName() public method

public AddMemberName ( string shortName ) : void
shortName string
return void
        public void AddMemberName(string shortName)
        {
            if(_memberNames == null)
            {
                _memberNames =  new global::System.Collections.Generic.Dictionary<string,string>();
            }
            _memberNames.Add(shortName, FullName + "." + shortName);
        }