예제 #1
0
 public virtual void Write(ResXMLTree_attribute data)
 {
     Write(data.Namespace);
     Write(data.Name);
     Write(data.RawValue);
     Write(data.TypedValue);
 }
예제 #2
0
 public AttributeInfo(ResXmlParser parser, ResXMLTree_attribute attribute)
 {
     _parser       = parser;
     TypedValue    = attribute.TypedValue;
     ValueStringId = attribute.RawValue.Index;
     NameId        = attribute.Name.Index;
     NamespaceId   = attribute.Namespace.Index;
 }