Exemplo n.º 1
0
        private void GenerateValueProperty(string name, ISdlElement value)
        {
            if (ReferenceEquals(value, null))
            {
                return;
            }

            TextComposer.Append(name);
            value.AcceptVisitor(this);
            TextComposer.AppendLine();
        }
Exemplo n.º 2
0
 public void Fallback(ISdlElement objItem, Microsoft.CSharp.RuntimeBinder.RuntimeBinderException excException)
 {
     TextComposer.Append("ISdlElement object not handeled of type " + objItem.GetType().FullName);
 }