Gustavo 的个人资料mentas日志列表SkyDrive 工具 帮助
7月28日

CSON (C# Object Notation)

Making an Object Notation for C# like JSON do to "JavaScript".
 
Sample:
 

/*

    Sample CSON

*/

 

Category

{

    Name = "C1";

Category

{

    Name = "C2";

}

Category

{

    Name = "C3";

}

 

Author

{

    Name = "A1";

    Birthday = #10-12-1972#;

Author

{

    Name = "A2";

    Birthday = #10-12-1964#;

}

 

Book

{

    Title = "B1";

    Year = 2005;

    Price = 25.7;

    Category = Category[0];

    Authors[0] = Author[1];

}

Book

{

    Title = "B2";

    Year = 2006;

    Price = 49;

    Category = Category[1];

    Authors[0] = Author[1];

    Authors[1] = Author[0];

}

Book

{

    Title = "B3";

    Year = 2007;

    Price = 12.4;

    Category = Category[2];

    Authors[0] = Author[1];

}

 

Implementation coming...