Skip to content

Commit dbfa8b2

Browse files
committed
Fixed a c# 6 compiler error
1 parent f5bd3cc commit dbfa8b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Shared/Extensions/EventExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public static string GetEventReference(this Event ev, string name) {
251251
if (ev == null || String.IsNullOrEmpty(name))
252252
return null;
253253

254-
return ev.Data.GetString($"@ref:{name}");
254+
return ev.Data.GetString(String.Format("@ref:{0}", name));
255255
}
256256

257257
/// <summary>

0 commit comments

Comments
 (0)