Boo.Lang.Compiler.CompilerErrorFactory.DisplayStringFor C# (CSharp) Method

DisplayStringFor() static private method

static private DisplayStringFor ( object o ) : string
o object
return string
        internal static string DisplayStringFor(object o)
        {
            if (o == null) return "";

            var entity = o as IEntity;
            return entity != null ? entity.DisplayName() : o.ToString();
        }
CompilerErrorFactory