using System;
namespace SlnMesnac.RfidUpload.Analysis
{
///
/// 标签信息解析
///
public sealed class BufferAnalysis
{
#region 单例实现
private static readonly Lazy _lazy = new Lazy(() => new BufferAnalysis());
public static BufferAnalysis Instance
{
get
{
return _lazy.Value;
}
}
#endregion
private BufferAnalysis() { }
}
}