##// END OF EJS Templates
Added Trace<T>.Debug(...) method for debug messages...
Added Trace<T>.Debug(...) method for debug messages Added ContainerBuilde.LoadConfig(Uri) method

File last commit:

r264:3a6e18c432be v3
r280:f07be402ab02 v3
Show More
Person.cs
19 lines | 417 B | text/x-csharp | CSharpLexer
using System.Xml.Serialization;
namespace Implab.Test.Model {
[XmlRoot(Namespace="urn:implab:test:model")]
public class Person {
public string FirstName { get; set; }
public string LastName { get; set; }
public int Age { get; set; }
[XmlIgnore]
public bool AgeSpecified { get; set; }
[XmlElement("Tag")]
public string[] Tags { get; set; }
}
}