18 lines
209 B
C#
18 lines
209 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace VisualPascalABC
|
|
{
|
|
public enum AssemblyType
|
|
{
|
|
GAC,
|
|
COM,
|
|
File,
|
|
Project
|
|
}
|
|
}
|
|
|