-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue #7. Modified to check header column when it imported.
* Header column should not be null * Header column should not be any c# keywords.
- Loading branch information
Showing
4 changed files
with
81 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using UnityEngine; | ||
using System.Collections; | ||
|
||
namespace UnityQuickSheet | ||
{ | ||
public class Util | ||
{ | ||
//all c# keywords. | ||
public static string[] Keywords = new string[] { | ||
"abstract", "as", "base", "bool", "break", "byte", "case", "catch", "char", "checked", | ||
"class", "const", "continue", "decimal", "default", "delegate", "do", "double", "else", "enum", | ||
"event", "explicit", "extern", "false", "finally", "fixed", "float", "for", "foreach", "goto", | ||
"if", "implicit", "in", "in", "int", "interface", "internal", "is", "lock", "long", | ||
"namespace", "new", "null", "object", "operator", "out", "override", "params", "private", "protected", | ||
"public", "readonly", "ref", "return", "sbyte", "sealed", "short", "sizeof", "stackalloc", "static", | ||
"string", "struct", "switch", "this", "throw", "true", "try", "typeof", "uint", "ulong", "unchecked", "unsafe", | ||
"ushort", "using", "virtual", "void", "volatile", "while", | ||
}; | ||
|
||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.