xamarin.ios - Type Casting for uitextfield in montouch? -


i need create uitextfield name of string i'm getting service. tried following way

string name = "sample"; uitextfield name = new uitextfield(); 

but i'm getting defined data type error.

please give me solution.

thank in advance,

you can't have 2 variables named same. general c# syntax issue.

does work if this:

string name = "sample"; uitextfield namefield = new uitextfield(); 

Comments

Popular posts from this blog

Delphi XE2 Indy10 udp client-server interchange using SendBuffer-ReceiveBuffer -

Qt ActiveX WMI QAxBase::dynamicCallHelper: ItemIndex(int): No such property in -

Enable autocomplete or intellisense in Atom editor for PHP -