pascalabcnet/VisualPascalABCNETLinux/MonoDebugging/Debugger/AssemblyLoadEventRequest.cs

12 lines
267 B
C#
Raw Normal View History

2023-04-18 18:53:21 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
namespace Mono.Debugger.Soft
{
public sealed class AssemblyLoadEventRequest : EventRequest {
internal AssemblyLoadEventRequest (VirtualMachine vm) : base (vm, EventType.AssemblyLoad) {
}
}
}