OmniXAML/README.md

16 строки
448 B
Markdown
Исходник Обычный вид История

2015-04-14 15:31:52 +03:00
# OmniXaml
2015-04-14 15:27:34 +03:00
Portable XAML Reader.
2015-02-24 21:58:41 +03:00
I know you need it, I know you want it. XAML!
2015-02-25 01:40:45 +03:00
```csharp
2015-02-24 21:58:41 +03:00
foreach (thing in life)
{
2015-02-25 01:40:45 +03:00
world.Shout(string.Format("XAML is the best language to describe {0}", thing);
2015-02-24 21:58:41 +03:00
}
2015-02-25 01:40:45 +03:00
```
2015-04-14 15:27:34 +03:00
For the moment, there is only a Markup Extension parser.
2015-04-14 15:31:33 +03:00
Thanks to [Nicholas Blumhardt](https://twitter.com/nblumhardt) for his awesome project [Sprache](https://github.com/sprache/Sprache) that has instroduced me in the world of parsers.