Created
May 13, 2018 06:37
-
-
Save kudchikarsk/bfaf7f5d67e99b956af59f118eefe45e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace Example_02.NoIndention | |
| { | |
| class SyntaxToken | |
| { | |
| private string _text; | |
| private int _position; | |
| private int _kind; | |
| public SyntaxToken(string text, int position, int kind) | |
| { | |
| _text = text; | |
| _position = position; | |
| _kind = kind; | |
| } | |
| public string Text => _text; | |
| public int Postion => _position; | |
| public int Kind => _kind; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment