score:-1

Accepted answer

i didn't want to hassle more with the beginning space and finally made a decition to just allow the initial space and just strip all spaces from the meta string eventually anyhow.

the problem actually turns out to be in the event it self so this was by solution for the being. im not looking anything more into this since in turning over to meta with tags inside the actual message instead. and with a prefix. eg. @meta lets see how that works ;)

 private string metainput { get; set; }
    public string metainput 
    {
        get
        {
            return metainput;
        }

        set 
        {
            string x = value;
            if (x.length > 3)
            {
                if (x.endswith(" "))
                {

                string z = x.replace(" ", "");
                x = z.replace(",", "");
                int l = x.length;

                    if (l > 2)
                    {
                        metainput = null;
                        savemetaword(x);
                    }

                    else 
                    {
                        metainput = null;
                    }
                }

            }

            else 
            {
                metainput = value;
            }

        }
    }

score:2

you final select has to be string and not the anonymous type

 var str = from cu in x
           // your stuff
           select cu.username + cu.fname;

the other option is to keep your anonymous types and use stringformat in the binding

<textblock >
    <textblock.text>
        <multibinding stringformat="{}{0}  {1}">
            <binding elementname="username" path="text"/>
            <binding elementname="name" path="text"/>
        </multibinding>
    </textblock.text>
</textblock>

yet another option is to have a field in the anonymous type that has the complete string that you want displayed and use displaymemberpath for binding


Related Query

More Query from same tag