Skip to content
Prev Previous commit
Next Next commit
Add license header
  • Loading branch information
tarekgh committed Jul 12, 2021
commit 5db42df43e28fc9662e333abed369167dadd2050
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using System;
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;
using System.IO;
using System.Globalization;
using System.Collections.Generic;
Expand Down Expand Up @@ -35,7 +38,7 @@ public class Parser
private Dictionary<int, int> upperCasing = new();
private Dictionary<int, int> lowerCasing = new();

public void ParseFile(string unicodeFileName)
public void ParseFile(string unicodeFileName)
{
try
{
Expand Down Expand Up @@ -132,7 +135,7 @@ public void GenerateTables()
{
GenerateTable8_4_4(upperCasing, out ushort[] u1, out ushort[] u2, out ushort[] u3);
GenerateTable8_4_4(lowerCasing, out ushort[] l1, out ushort[] l2, out ushort[] l3);

WriteTable(u1, "UpperCase1");
WriteTable(u2, "UpperCase2");
WriteTable(u3, "UpperCase3");
Expand Down