You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
526 B
C#
26 lines
526 B
C#
using System;
|
|
|
|
namespace SlnMesnac.RfidUpload.Analysis
|
|
{
|
|
/// <summary>
|
|
/// 标签信息解析
|
|
/// </summary>
|
|
public sealed class BufferAnalysis
|
|
{
|
|
#region 单例实现
|
|
private static readonly Lazy<BufferAnalysis> _lazy = new Lazy<BufferAnalysis>(() => new BufferAnalysis());
|
|
|
|
public static BufferAnalysis Instance
|
|
{
|
|
get
|
|
{
|
|
return _lazy.Value;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
private BufferAnalysis() { }
|
|
|
|
|
|
}
|
|
} |