MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / String

Class String

packages/csharp/src/AlphaTab/Core/EcmaScript/String.cs:6–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4namespace AlphaTab.Core.EcmaScript;
5
6internal static class String
7{
8 public static string FromCharCode(double code)
9 {
10 return "" + (char)(int)code;
11 }
12
13 public static string FromCodePoint(double code)
14 {
15 return char.ConvertFromUtf32((int)code);
16 }
17
18 public static string FromCodePoint(IList<double> codes)
19 {
20 return string.Concat(codes.Select(c => char.ConvertFromUtf32((int)c)).ToArray());
21 }
22}

Callers 14

decodeMethod · 0.85
fromCodePointMethod · 0.85
fillMusicFontSymbolsMethod · 0.85
formatDurationFunction · 0.85
setValueMethod · 0.85
renderItemsMethod · 0.85
constructorMethod · 0.85
setActiveMethod · 0.85
setValueMethod · 0.85
escapeHtmlFunction · 0.85
_isPlatformTypeEqualMethod · 0.85
testRoundTripEqualFunction · 0.85

Calls

no outgoing calls

Tested by 1

testRoundTripEqualFunction · 0.68