progress
This commit is contained in:
parent
16e76d6b31
commit
484dbfc9d9
529 changed files with 113694 additions and 0 deletions
19
AspClassic.Parser/LanguageVersion.cs
Normal file
19
AspClassic.Parser/LanguageVersion.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
using System;
|
||||
|
||||
namespace AspClassic.Parser;
|
||||
|
||||
/// <summary>
|
||||
/// The version of the language you want.
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum LanguageVersion
|
||||
{
|
||||
None = 0,
|
||||
/// <summary>Visual Basic 7.1</summary>
|
||||
/// <remarks>Shipped in Visual Basic 2003</remarks>
|
||||
VisualBasic71 = 1,
|
||||
/// <summary>Visual Basic 8.0</summary>
|
||||
/// <remarks>Shipped in Visual Basic 2005</remarks>
|
||||
VisualBasic80 = 2,
|
||||
All = 3
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue