Moves XNA 4 files for Github migration.
This commit is contained in:
		
							
								
								
									
										27
									
								
								Plan B Html Parser/Tokens/HtmlTextToken.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								Plan B Html Parser/Tokens/HtmlTextToken.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,27 @@ | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using System.Linq; | ||||
| using System.Text; | ||||
|  | ||||
| namespace PlanB.Html.Tokens | ||||
| { | ||||
|     internal class HtmlTextToken: HtmlToken | ||||
|     { | ||||
|         public string Text { get; set; } | ||||
|  | ||||
|         public HtmlTextToken() | ||||
|         { | ||||
|             Text = String.Empty; | ||||
|         } | ||||
|  | ||||
|         public HtmlTextToken(string str) | ||||
|         { | ||||
|             Text = str; | ||||
|         } | ||||
|  | ||||
|         public override string ToString() | ||||
|         { | ||||
|             return Text ?? String.Empty; | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user