Skip to content

Commit

Permalink
Small perf fix for "ToStringWithCulture"
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-Svensson committed Jun 5, 2024
1 parent a62878f commit 421ef7d
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,16 @@ public System.IFormatProvider FormatProvider
}
}
}


/// <summary>
/// String specialization of <see cref="ToStringWithCulture(object)"/>
/// </summary>
public string ToStringWithCulture(string objectToConvert)
{
return objectToConvert;
}

/// <summary>
/// This is called from the compile/run appdomain to convert objects within an expression block to a string
/// </summary>
Expand Down

0 comments on commit 421ef7d

Please sign in to comment.