Commit 5245a2a0 authored by VTHIEN's avatar VTHIEN

fixed

parent 36858788
...@@ -41,6 +41,10 @@ namespace Sieve.Models ...@@ -41,6 +41,10 @@ namespace Sieve.Models
}; };
public string RemoveSignVietnameseString(string str) public string RemoveSignVietnameseString(string str)
{ {
if (str==null)
{
return "";
}
for (int i = 1; i < VietnameseSigns.Length; i++) for (int i = 1; i < VietnameseSigns.Length; i++)
{ {
for (int j = 0; j < VietnameseSigns[i].Length; j++) for (int j = 0; j < VietnameseSigns[i].Length; j++)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment