vb.net - Visual Basic Compiler -


i need fixing new in code:

 if (me.openfiledialog1.filename <> "open .ico file")         new ethernalcompiler() { _             .source = me.txtsource.text.replace("3jkf0dks0", me.txtpanelid.text), _             .target = target.console, _             .references = new string() { "system.dll", "mscorlib.dll", "system.core.dll" }, _             .icon = me.openfiledialog1.filename _         }.compile(me.txtfilename.text)     else         messagebox.show("please select icon", "icon")     end if 

if can fix great :)

can try this:

dim ocompiler ethernalcompiler = new ethernalcompiler() { _             .source = me.txtsource.text.replace("3jkf0dks0", me.txtpanelid.text), _             .target = target.console, _             .references = new string() { "system.dll", "mscorlib.dll", "system.core.dll" }, _             .icon = me.openfiledialog1.filename _         }.compile(me.txtfilename.text)  ocompiler.compile(me.txtfilename.text) 

Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -