static internal IntPrimitive Create(uint position) { var result = new IntPrimitive(); Populate(result, position); return(result); }
public static string Dump(IntPrimitive value) { var assistant = new AssistantDumper(); Dump(assistant, value); return(assistant.ToString()); }
static internal void Dump(AssistantDumper assistant, IntPrimitive value, bool withSeparator = false) { assistant.IncrementDepth(); if (assistant.MaximumDepthExceeded()) { return; } assistant.AddStartObject(); assistant.AddType("CSharpRefImpl.CSharpModel.IntPrimitive", true /*withSeparator*/); if (value == null) { assistant.Add("data", "<null>"); assistant.AddEndObject(); return; } assistant.AddKey("data"); assistant.AddPairSeparator(); assistant.AddStartObject(); assistant.Add("Value", value.Value); assistant.AddEndObject(); // data assistant.AddEndObject(); // main object assistant.HandleMemberSeparator(withSeparator); assistant.DecrementDepth(); }
static internal void Populate(IntPrimitive value, uint position) { value.Value = AssistantSequenceGenerator.CreateInt(position); }