25 lines
416 B
C#
25 lines
416 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Be.Windows.Forms
|
|
{
|
|
public class StaticByteProvider : DynamicByteProvider
|
|
{
|
|
public StaticByteProvider(byte[] data) : base(data)
|
|
{
|
|
}
|
|
|
|
public override bool SupportsInsertBytes()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public override bool SupportsDeleteBytes()
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|