123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 Jiang Yin. All rights reserved.
- // Homepage: https://gameframework.cn/
- // Feedback: mailto:ellan@gameframework.cn
- //------------------------------------------------------------
- using System.IO;
- namespace MetaClient.Editor.DataTableTools
- {
- public sealed partial class DataTableProcessor
- {
- private sealed class CommentProcessor : DataProcessor
- {
- public override System.Type Type
- {
- get
- {
- return null;
- }
- }
- public override bool IsId
- {
- get
- {
- return false;
- }
- }
- public override bool IsComment
- {
- get
- {
- return true;
- }
- }
- public override bool IsSystem
- {
- get
- {
- return false;
- }
- }
- public override string LanguageKeyword
- {
- get
- {
- return null;
- }
- }
- public override string[] GetTypeStrings()
- {
- return new string[]
- {
- string.Empty,
- "#",
- "comment"
- };
- }
- public override void WriteToStream(DataTableProcessor dataTableProcessor, BinaryWriter binaryWriter, string value)
- {
- }
- }
- }
- }
|