代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/359499/10141741
cs undobutton.cs
using System;
namespace State
{
///
/// Summary description for UndoButton.
///
public class UndoButton :ComdToolBarButton
{
public UndoButton(Mediator md):base("
www.eeworm.com/read/359499/10141752
cs command.cs
using System;
namespace State
{
///
/// Summary description for Command.
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/359499/10141772
cs clearbutton.cs
using System;
namespace State
{
///
/// Summary description for ClearButton.
///
public class ClearButton:ComdToolBarButton
{
public ClearButton(Mediator md):base
www.eeworm.com/read/359499/10141802
cs command.cs
using System;
using CsharpPats;
namespace Memento
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}
www.eeworm.com/read/359499/10141921
cs command.cs
using System;
using CsharpPats;
namespace Mediate
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}
www.eeworm.com/read/359499/10142072
cs command.cs
using System;
namespace Interpreter
{
///
/// Summary description for Command.
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/359499/10142186
cs command.cs
using System;
using CsharpPats;
namespace Strategy
{
///
/// Command interface
///
public interface Command
{
void Execute();
}
}
www.eeworm.com/read/359499/10142255
cs command.cs
using System;
namespace CHolder
{
///
/// defines Command interface
///
public interface Command {
void Execute();
}
}
www.eeworm.com/read/359499/10142284
cs command.cs
using System;
namespace ButtonMenu
{
///
/// interface for Command type
///
public interface Command {
void Execute();
}
}