Exemplo n.º 1
0
        protected override void Append(Representation.RepresentationSystem.NumericRepresentation representation, StringBuilder stringBuilder)
        {
            string representationName = representation.DomainId.Replace("\r", "")
                                        .Replace("[", "")
                                        .Replace("]", "")
                                        .Replace("(", "")
                                        .Replace(")", "")
                                        .Replace("-", "")
                                        .Replace("–", "")
                                        .Replace(" ", "");

            stringBuilder.Append(String.Format(RepresentationPattern, typeof(NumericRepresentation).Name, representation.DomainId));
            stringBuilder.Append("\n\n");
        }
Exemplo n.º 2
0
 protected override void Append(Representation.RepresentationSystem.NumericRepresentation representation, StringBuilder stringBuilder)
 {
     Append(representation, stringBuilder);
 }
Exemplo n.º 3
0
 protected virtual void Append(Representation.RepresentationSystem.NumericRepresentation representation, StringBuilder stringBuilder)
 {
 }