-
follow-up on #156
```csharp
class Address
{
public string Country;
public string City;
}
class Person
{
public string FirstName = "first";
public string LastName = "last";
…
-
Would be nice if the library supported dictionaries with generic types.
var inputs = new Dictionary
{
{ "a", 1 },
{ "b", 2 }
};
var result = "{a},{b}".FormatWit…
-
Hi,
in the past I had to parse an html string where CSS-styles had been inlined, e.g.
```
.className {
}
{propertyName}
```
In 2.5.0 I have used next snippet to support `…
-
Template: ```"Hello {Name"```
That template is clearly missing an end curly brace
```
Smart.Format("Hello {Name", new { Name = "Anders Jonsson", City = "Stockholm"})
//Result: Exception
```
So…
-
Hi
I've created a custom formatter to handle different texts for gender. The formatter works as expected. I'm wondering if my implementation could benefit from the built in caching and if so what is …
-
Using data from your example on https://github.com/axuno/SmartFormat/wiki/SubString
```
var people = new List
{new {Name = "Long John", City = "New York"}, new {Name = "Short Mary", City = "Massa…
-
Version: 1.1.25.0; Variant: Installed; Arch: Amd64
Path: C:\Program Files\SyncTrayzor\SyncTrayzor.exe
SmartFormat.Core.Formatting.FormattingException: Error parsing format string: Invalid number of …
-
Version: 1.1.25.0; Variant: Portable; Arch: Amd64
Path: C:\common\prog\SyncTrayzorPortable-x64\SyncTrayzor.exe
SmartFormat.Core.Formatting.FormattingException: Error parsing format string: No suitab…
-
Hi,
after upgrade to current release …
```
2020-12-28 16:25:09.2137 #1644 [Info] SyncTrayzor.Services.Config.ConfigurationProvider: Loaded default configuration:
2020-12-28 16:25:09.2293 #16…
-
Hi,
I would like to use this Library in my Windows Store / Phone App but it is currently build for the "old" .Net 3.5 and is not PCL ready.
Anyway, I could port it, but would you merge it, once I'm …
negue updated
3 years ago