Mono.Debugger.Frontend.ObjectFormatter.FormatNullable C# (CSharp) 메소드

FormatNullable() 보호된 메소드

protected FormatNullable ( Thread target, TargetNullableObject nullable ) : void
target Thread
nullable Mono.Debugger.Languages.TargetNullableObject
리턴 void
        protected void FormatNullable(Thread target, TargetNullableObject nullable)
        {
            bool has_value = nullable.HasValue (target);

            if (has_value) {
                TargetObject value = nullable.GetValue (target);
                FormatObjectRecursed (target, value, true);
            } else {
                Append ("null");
            }
        }