|
Can someone convert from C# into VB this line for me:
if (c is System.Web.UI.HtmlControls.HtmlForm) | |
Share:
|
Hi,
Here's the Vb code.
If TypeOf c Is System.Web.UI.HtmlControls.HtmlForm Then
EndIf
Thanx.
"John Smith" <jo********@microsoft.com> wrote in message
news:Py********************@news.siol.net... Can someone convert from C# into VB this line for me:
if (c is System.Web.UI.HtmlControls.HtmlForm) | | |
Poornimab already gave you the answer, but the next time you need to
translate from C# to VB.NET, you might want to save yourself some time
and use this nifty online translator : http://www.carlosag.net/Tools/CodeTr...r/default.aspx
Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"John Smith" <jo********@microsoft.com> wrote in message
news:Py********************@news.siol.net... Can someone convert from C# into VB this line for me:
if (c is System.Web.UI.HtmlControls.HtmlForm) | | |
That on-line converter is usually pretty good, but it fails to convert the
original poster's sample.
Our C# to VB converter (Instant VB) will convert what the on-line converters
can't.
--
David Anton www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C# to C++ converter
Instant C++: VB to C++ converter
"Juan T. Llibre" wrote: Poornimab already gave you the answer, but the next time you need to translate from C# to VB.NET, you might want to save yourself some time and use this nifty online translator :
http://www.carlosag.net/Tools/CodeTr...r/default.aspx Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "John Smith" <jo********@microsoft.com> wrote in message news:Py********************@news.siol.net... Can someone convert from C# into VB this line for me:
if (c is System.Web.UI.HtmlControls.HtmlForm)
| | |
David, when I used it, it returned :
If (c = System.Web.UI.HtmlControls.HtmlForm) Then
End If
Is there anything else your translator returns which Carlos' doesn't return ?
Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"David Anton" <Da********@discussions.microsoft.com> wrote in message
news:3D**********************************@microsof t.com... That on-line converter is usually pretty good, but it fails to convert the original poster's sample.
Our C# to VB converter (Instant VB) will convert what the on-line converters can't. -- David Anton www.tangiblesoftwaresolutions.com Instant C#: VB to C# converter Instant VB: C# to VB converter Instant C++: C# to C++ converter Instant C++: VB to C++ converter
"Juan T. Llibre" wrote:
Poornimab already gave you the answer, but the next time you need to translate from C# to VB.NET, you might want to save yourself some time and use this nifty online translator :
http://www.carlosag.net/Tools/CodeTr...r/default.aspx Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "John Smith" <jo********@microsoft.com> wrote in message news:Py********************@news.siol.net... > > Can someone convert from C# into VB this line for me: > > if (c is System.Web.UI.HtmlControls.HtmlForm) > > > | | |
Poornimab gave the correct translation (same as our converter).
The equivalent to the C# "x is y" in VB is "TypeOf x Is y", not "x = y".
--
David Anton www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C# to C++ converter
Instant C++: VB to C++ converter
"Juan T. Llibre" wrote: David, when I used it, it returned :
If (c = System.Web.UI.HtmlControls.HtmlForm) Then End If
Is there anything else your translator returns which Carlos' doesn't return ?
Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "David Anton" <Da********@discussions.microsoft.com> wrote in message news:3D**********************************@microsof t.com... That on-line converter is usually pretty good, but it fails to convert the original poster's sample.
Our C# to VB converter (Instant VB) will convert what the on-line converters can't. -- David Anton www.tangiblesoftwaresolutions.com Instant C#: VB to C# converter Instant VB: C# to VB converter Instant C++: C# to C++ converter Instant C++: VB to C++ converter
"Juan T. Llibre" wrote:
Poornimab already gave you the answer, but the next time you need to translate from C# to VB.NET, you might want to save yourself some time and use this nifty online translator :
http://www.carlosag.net/Tools/CodeTr...r/default.aspx Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "John Smith" <jo********@microsoft.com> wrote in message news:Py********************@news.siol.net... > > Can someone convert from C# into VB this line for me: > > if (c is System.Web.UI.HtmlControls.HtmlForm) > > > | | |
I'll notify Carlos...
Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"David Anton" <Da********@discussions.microsoft.com> wrote in message
news:56**********************************@microsof t.com... Poornimab gave the correct translation (same as our converter). The equivalent to the C# "x is y" in VB is "TypeOf x Is y", not "x = y". -- David Anton www.tangiblesoftwaresolutions.com Instant C#: VB to C# converter Instant VB: C# to VB converter Instant C++: C# to C++ converter Instant C++: VB to C++ converter
"Juan T. Llibre" wrote:
David, when I used it, it returned :
If (c = System.Web.UI.HtmlControls.HtmlForm) Then End If
Is there anything else your translator returns which Carlos' doesn't return ?
Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "David Anton" <Da********@discussions.microsoft.com> wrote in message news:3D**********************************@microsof t.com... > That on-line converter is usually pretty good, but it fails to convert the > original poster's sample. > > Our C# to VB converter (Instant VB) will convert what the on-line converters > can't. > -- > David Anton > www.tangiblesoftwaresolutions.com > Instant C#: VB to C# converter > Instant VB: C# to VB converter > Instant C++: C# to C++ converter > Instant C++: VB to C++ converter > > > "Juan T. Llibre" wrote: > >> Poornimab already gave you the answer, but the next time you need to >> translate from C# to VB.NET, you might want to save yourself some time >> and use this nifty online translator : >> >> http://www.carlosag.net/Tools/CodeTr...r/default.aspx >> >> >> >> Juan T. Llibre, asp.net MVP >> aspnetfaq.com : http://www.aspnetfaq.com/ >> asp.net faq : http://asp.net.do/faq/ >> foros de asp.net, en español : http://asp.net.do/foros/ >> =================================== >> "John Smith" <jo********@microsoft.com> wrote in message >> news:Py********************@news.siol.net... >> > >> > Can someone convert from C# into VB this line for me: >> > >> > if (c is System.Web.UI.HtmlControls.HtmlForm) >> > >> > >> > >> >> >> | | |
I think Carlos' converter is the best on-line converter, but there are always
going to be many issues not handled well by any of the on-line converters.
See the following for a partial list: http://www.tangiblesoftwaresolutions...Converters.htm
--
David Anton www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C# to C++ converter
Instant C++: VB to C++ converter
"Juan T. Llibre" wrote: I'll notify Carlos... Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "David Anton" <Da********@discussions.microsoft.com> wrote in message news:56**********************************@microsof t.com... Poornimab gave the correct translation (same as our converter). The equivalent to the C# "x is y" in VB is "TypeOf x Is y", not "x = y". -- David Anton www.tangiblesoftwaresolutions.com Instant C#: VB to C# converter Instant VB: C# to VB converter Instant C++: C# to C++ converter Instant C++: VB to C++ converter
"Juan T. Llibre" wrote:
David, when I used it, it returned :
If (c = System.Web.UI.HtmlControls.HtmlForm) Then End If
Is there anything else your translator returns which Carlos' doesn't return ?
Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "David Anton" <Da********@discussions.microsoft.com> wrote in message news:3D**********************************@microsof t.com... > That on-line converter is usually pretty good, but it fails to convert the > original poster's sample. > > Our C# to VB converter (Instant VB) will convert what the on-line converters > can't. > -- > David Anton > www.tangiblesoftwaresolutions.com > Instant C#: VB to C# converter > Instant VB: C# to VB converter > Instant C++: C# to C++ converter > Instant C++: VB to C++ converter > > > "Juan T. Llibre" wrote: > >> Poornimab already gave you the answer, but the next time you need to >> translate from C# to VB.NET, you might want to save yourself some time >> and use this nifty online translator : >> >> http://www.carlosag.net/Tools/CodeTr...r/default.aspx >> >> >> >> Juan T. Llibre, asp.net MVP >> aspnetfaq.com : http://www.aspnetfaq.com/ >> asp.net faq : http://asp.net.do/faq/ >> foros de asp.net, en español : http://asp.net.do/foros/ >> =================================== >> "John Smith" <jo********@microsoft.com> wrote in message >> news:Py********************@news.siol.net... >> > >> > Can someone convert from C# into VB this line for me: >> > >> > if (c is System.Web.UI.HtmlControls.HtmlForm) >> > >> > >> > >> >> >> | | |
Well: http://www.developerfusion.co.uk/uti...sharptovb.aspx
gave the right conversion. you simply needed to add the brackets {}
Karl
-- http://www.openmymind.net/
"David Anton" <Da********@discussions.microsoft.com> wrote in message
news:96**********************************@microsof t.com... I think Carlos' converter is the best on-line converter, but there are always going to be many issues not handled well by any of the on-line converters. See the following for a partial list: http://www.tangiblesoftwaresolutions...Converters.htm -- David Anton www.tangiblesoftwaresolutions.com Instant C#: VB to C# converter Instant VB: C# to VB converter Instant C++: C# to C++ converter Instant C++: VB to C++ converter
"Juan T. Llibre" wrote:
I'll notify Carlos... Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "David Anton" <Da********@discussions.microsoft.com> wrote in message news:56**********************************@microsof t.com... > Poornimab gave the correct translation (same as our converter). > The equivalent to the C# "x is y" in VB is "TypeOf x Is y", not "x = > y". > -- > David Anton > www.tangiblesoftwaresolutions.com > Instant C#: VB to C# converter > Instant VB: C# to VB converter > Instant C++: C# to C++ converter > Instant C++: VB to C++ converter > > > "Juan T. Llibre" wrote: > >> David, when I used it, it returned : >> >> >> If (c = System.Web.UI.HtmlControls.HtmlForm) Then >> End If >> >> >> Is there anything else your translator returns which Carlos' doesn't >> return ? >> >> >> >> >> Juan T. Llibre, asp.net MVP >> aspnetfaq.com : http://www.aspnetfaq.com/ >> asp.net faq : http://asp.net.do/faq/ >> foros de asp.net, en español : http://asp.net.do/foros/ >> =================================== >> "David Anton" <Da********@discussions.microsoft.com> wrote in message >> news:3D**********************************@microsof t.com... >> > That on-line converter is usually pretty good, but it fails to >> > convert the >> > original poster's sample. >> > >> > Our C# to VB converter (Instant VB) will convert what the on-line >> > converters >> > can't. >> > -- >> > David Anton >> > www.tangiblesoftwaresolutions.com >> > Instant C#: VB to C# converter >> > Instant VB: C# to VB converter >> > Instant C++: C# to C++ converter >> > Instant C++: VB to C++ converter >> > >> > >> > "Juan T. Llibre" wrote: >> > >> >> Poornimab already gave you the answer, but the next time you need >> >> to >> >> translate from C# to VB.NET, you might want to save yourself some >> >> time >> >> and use this nifty online translator : >> >> >> >> http://www.carlosag.net/Tools/CodeTr...r/default.aspx >> >> >> >> >> >> >> >> Juan T. Llibre, asp.net MVP >> >> aspnetfaq.com : http://www.aspnetfaq.com/ >> >> asp.net faq : http://asp.net.do/faq/ >> >> foros de asp.net, en español : http://asp.net.do/foros/ >> >> =================================== >> >> "John Smith" <jo********@microsoft.com> wrote in message >> >> news:Py********************@news.siol.net... >> >> > >> >> > Can someone convert from C# into VB this line for me: >> >> > >> >> > if (c is System.Web.UI.HtmlControls.HtmlForm) >> >> > >> >> > >> >> > >> >> >> >> >> >> >> >> >> | | |
For developerfusion, try some generics or operator overloading... it'll trip
it up every time.
The on-line converters only handle the most obvious syntax conversions.
You're in for a surprise if you use the results in your production code.
--
David Anton www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C# to C++ converter
Instant C++: VB to C++ converter
"Karl Seguin [MVP]" wrote: Well: http://www.developerfusion.co.uk/uti...sharptovb.aspx
gave the right conversion. you simply needed to add the brackets {}
Karl
-- http://www.openmymind.net/ "David Anton" <Da********@discussions.microsoft.com> wrote in message news:96**********************************@microsof t.com...I think Carlos' converter is the best on-line converter, but there are always going to be many issues not handled well by any of the on-line converters. See the following for a partial list: http://www.tangiblesoftwaresolutions...Converters.htm -- David Anton www.tangiblesoftwaresolutions.com Instant C#: VB to C# converter Instant VB: C# to VB converter Instant C++: C# to C++ converter Instant C++: VB to C++ converter
"Juan T. Llibre" wrote:
I'll notify Carlos... Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "David Anton" <Da********@discussions.microsoft.com> wrote in message news:56**********************************@microsof t.com... > Poornimab gave the correct translation (same as our converter). > The equivalent to the C# "x is y" in VB is "TypeOf x Is y", not "x = > y". > -- > David Anton > www.tangiblesoftwaresolutions.com > Instant C#: VB to C# converter > Instant VB: C# to VB converter > Instant C++: C# to C++ converter > Instant C++: VB to C++ converter > > > "Juan T. Llibre" wrote: > >> David, when I used it, it returned : >> >> >> If (c = System.Web.UI.HtmlControls.HtmlForm) Then >> End If >> >> >> Is there anything else your translator returns which Carlos' doesn't >> return ? >> >> >> >> >> Juan T. Llibre, asp.net MVP >> aspnetfaq.com : http://www.aspnetfaq.com/ >> asp.net faq : http://asp.net.do/faq/ >> foros de asp.net, en español : http://asp.net.do/foros/ >> =================================== >> "David Anton" <Da********@discussions.microsoft.com> wrote in message >> news:3D**********************************@microsof t.com... >> > That on-line converter is usually pretty good, but it fails to >> > convert the >> > original poster's sample. >> > >> > Our C# to VB converter (Instant VB) will convert what the on-line >> > converters >> > can't. >> > -- >> > David Anton >> > www.tangiblesoftwaresolutions.com >> > Instant C#: VB to C# converter >> > Instant VB: C# to VB converter >> > Instant C++: C# to C++ converter >> > Instant C++: VB to C++ converter >> > >> > >> > "Juan T. Llibre" wrote: >> > >> >> Poornimab already gave you the answer, but the next time you need >> >> to >> >> translate from C# to VB.NET, you might want to save yourself some >> >> time >> >> and use this nifty online translator : >> >> >> >> http://www.carlosag.net/Tools/CodeTr...r/default.aspx >> >> >> >> >> >> >> >> Juan T. Llibre, asp.net MVP >> >> aspnetfaq.com : http://www.aspnetfaq.com/ >> >> asp.net faq : http://asp.net.do/faq/ >> >> foros de asp.net, en español : http://asp.net.do/foros/ >> >> =================================== >> >> "John Smith" <jo********@microsoft.com> wrote in message >> >> news:Py********************@news.siol.net... >> >> > >> >> > Can someone convert from C# into VB this line for me: >> >> > >> >> > if (c is System.Web.UI.HtmlControls.HtmlForm) >> >> > >> >> > >> >> > >> >> >> >> >> >> >> >> >> | | |
David,
what is your opinion on the SharpDevelop built-in converters ?
Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
"David Anton" <Da********@discussions.microsoft.com> wrote in message
news:93**********************************@microsof t.com... For developerfusion, try some generics or operator overloading... it'll trip it up every time.
The on-line converters only handle the most obvious syntax conversions. You're in for a surprise if you use the results in your production code. -- David Anton www.tangiblesoftwaresolutions.com Instant C#: VB to C# converter Instant VB: C# to VB converter Instant C++: C# to C++ converter Instant C++: VB to C++ converter
"Karl Seguin [MVP]" wrote:
Well: http://www.developerfusion.co.uk/uti...sharptovb.aspx
gave the right conversion. you simply needed to add the brackets {}
Karl
-- http://www.openmymind.net/ "David Anton" <Da********@discussions.microsoft.com> wrote in message news:96**********************************@microsof t.com... >I think Carlos' converter is the best on-line converter, but there are >always > going to be many issues not handled well by any of the on-line converters. > See the following for a partial list: > http://www.tangiblesoftwaresolutions...Converters.htm > -- > David Anton > www.tangiblesoftwaresolutions.com > Instant C#: VB to C# converter > Instant VB: C# to VB converter > Instant C++: C# to C++ converter > Instant C++: VB to C++ converter > > > "Juan T. Llibre" wrote: > >> I'll notify Carlos... >> >> >> >> Juan T. Llibre, asp.net MVP >> aspnetfaq.com : http://www.aspnetfaq.com/ >> asp.net faq : http://asp.net.do/faq/ >> foros de asp.net, en español : http://asp.net.do/foros/ >> =================================== >> "David Anton" <Da********@discussions.microsoft.com> wrote in message >> news:56**********************************@microsof t.com... >> > Poornimab gave the correct translation (same as our converter). >> > The equivalent to the C# "x is y" in VB is "TypeOf x Is y", not "x = >> > y". >> > -- >> > David Anton >> > www.tangiblesoftwaresolutions.com >> > Instant C#: VB to C# converter >> > Instant VB: C# to VB converter >> > Instant C++: C# to C++ converter >> > Instant C++: VB to C++ converter >> > >> > >> > "Juan T. Llibre" wrote: >> > >> >> David, when I used it, it returned : >> >> >> >> >> >> If (c = System.Web.UI.HtmlControls.HtmlForm) Then >> >> End If >> >> >> >> >> >> Is there anything else your translator returns which Carlos' doesn't >> >> return ? >> >> >> >> >> >> >> >> >> >> Juan T. Llibre, asp.net MVP >> >> aspnetfaq.com : http://www.aspnetfaq.com/ >> >> asp.net faq : http://asp.net.do/faq/ >> >> foros de asp.net, en español : http://asp.net.do/foros/ >> >> =================================== >> >> "David Anton" <Da********@discussions.microsoft.com> wrote in message >> >> news:3D**********************************@microsof t.com... >> >> > That on-line converter is usually pretty good, but it fails to >> >> > convert the >> >> > original poster's sample. >> >> > >> >> > Our C# to VB converter (Instant VB) will convert what the on-line >> >> > converters >> >> > can't. >> >> > -- >> >> > David Anton >> >> > www.tangiblesoftwaresolutions.com >> >> > Instant C#: VB to C# converter >> >> > Instant VB: C# to VB converter >> >> > Instant C++: C# to C++ converter >> >> > Instant C++: VB to C++ converter >> >> > >> >> > >> >> > "Juan T. Llibre" wrote: >> >> > >> >> >> Poornimab already gave you the answer, but the next time you need >> >> >> to >> >> >> translate from C# to VB.NET, you might want to save yourself some >> >> >> time >> >> >> and use this nifty online translator : >> >> >> >> >> >> http://www.carlosag.net/Tools/CodeTr...r/default.aspx >> >> >> >> >> >> >> >> >> >> >> >> Juan T. Llibre, asp.net MVP >> >> >> aspnetfaq.com : http://www.aspnetfaq.com/ >> >> >> asp.net faq : http://asp.net.do/faq/ >> >> >> foros de asp.net, en español : http://asp.net.do/foros/ >> >> >> =================================== >> >> >> "John Smith" <jo********@microsoft.com> wrote in message >> >> >> news:Py********************@news.siol.net... >> >> >> > >> >> >> > Can someone convert from C# into VB this line for me: >> >> >> > >> >> >> > if (c is System.Web.UI.HtmlControls.HtmlForm) >> >> >> > >> >> >> > >> >> >> > >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> | | |
I just tried:
void test()
{
}
and it bombed.
So... I would say that it needs a little work!
Apparently, it doesn't handle partial code snippets - i.e., you need to
enter a complete class to get it to work. Also, it translates ? to IIf,
which is incorrect (the correct conversion is an If/Else block). These two
problems were found in just 2 minutes playing around with it just now.
I don't regard this as a serious tool.
--
David Anton www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C# to C++ converter
Instant C++: VB to C++ converter
"Juan T. Llibre" wrote: David,
what is your opinion on the SharpDevelop built-in converters ?
Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "David Anton" <Da********@discussions.microsoft.com> wrote in message news:93**********************************@microsof t.com... For developerfusion, try some generics or operator overloading... it'll trip it up every time.
The on-line converters only handle the most obvious syntax conversions. You're in for a surprise if you use the results in your production code. -- David Anton www.tangiblesoftwaresolutions.com Instant C#: VB to C# converter Instant VB: C# to VB converter Instant C++: C# to C++ converter Instant C++: VB to C++ converter
"Karl Seguin [MVP]" wrote:
Well: http://www.developerfusion.co.uk/uti...sharptovb.aspx
gave the right conversion. you simply needed to add the brackets {}
Karl
-- http://www.openmymind.net/ "David Anton" <Da********@discussions.microsoft.com> wrote in message news:96**********************************@microsof t.com... >I think Carlos' converter is the best on-line converter, but there are >always > going to be many issues not handled well by any of the on-line converters. > See the following for a partial list: > http://www.tangiblesoftwaresolutions...Converters.htm > -- > David Anton > www.tangiblesoftwaresolutions.com > Instant C#: VB to C# converter > Instant VB: C# to VB converter > Instant C++: C# to C++ converter > Instant C++: VB to C++ converter > > > "Juan T. Llibre" wrote: > >> I'll notify Carlos... >> >> >> >> Juan T. Llibre, asp.net MVP >> aspnetfaq.com : http://www.aspnetfaq.com/ >> asp.net faq : http://asp.net.do/faq/ >> foros de asp.net, en español : http://asp.net.do/foros/ >> =================================== >> "David Anton" <Da********@discussions.microsoft.com> wrote in message >> news:56**********************************@microsof t.com... >> > Poornimab gave the correct translation (same as our converter). >> > The equivalent to the C# "x is y" in VB is "TypeOf x Is y", not "x = >> > y". >> > -- >> > David Anton >> > www.tangiblesoftwaresolutions.com >> > Instant C#: VB to C# converter >> > Instant VB: C# to VB converter >> > Instant C++: C# to C++ converter >> > Instant C++: VB to C++ converter >> > >> > >> > "Juan T. Llibre" wrote: >> > >> >> David, when I used it, it returned : >> >> >> >> >> >> If (c = System.Web.UI.HtmlControls.HtmlForm) Then >> >> End If >> >> >> >> >> >> Is there anything else your translator returns which Carlos' doesn't >> >> return ? >> >> >> >> >> >> >> >> >> >> Juan T. Llibre, asp.net MVP >> >> aspnetfaq.com : http://www.aspnetfaq.com/ >> >> asp.net faq : http://asp.net.do/faq/ >> >> foros de asp.net, en español : http://asp.net.do/foros/ >> >> =================================== >> >> "David Anton" <Da********@discussions.microsoft.com> wrote in message >> >> news:3D**********************************@microsof t.com... >> >> > That on-line converter is usually pretty good, but it fails to >> >> > convert the >> >> > original poster's sample. >> >> > >> >> > Our C# to VB converter (Instant VB) will convert what the on-line >> >> > converters >> >> > can't. >> >> > -- >> >> > David Anton >> >> > www.tangiblesoftwaresolutions.com >> >> > Instant C#: VB to C# converter >> >> > Instant VB: C# to VB converter >> >> > Instant C++: C# to C++ converter >> >> > Instant C++: VB to C++ converter >> >> > >> >> > >> >> > "Juan T. Llibre" wrote: >> >> > >> >> >> Poornimab already gave you the answer, but the next time you need >> >> >> to >> >> >> translate from C# to VB.NET, you might want to save yourself some >> >> >> time >> >> >> and use this nifty online translator : >> >> >> >> >> >> http://www.carlosag.net/Tools/CodeTr...r/default.aspx >> >> >> >> >> >> >> >> >> >> >> >> Juan T. Llibre, asp.net MVP >> >> >> aspnetfaq.com : http://www.aspnetfaq.com/ >> >> >> asp.net faq : http://asp.net.do/faq/ >> >> >> foros de asp.net, en español : http://asp.net.do/foros/ >> >> >> =================================== >> >> >> "John Smith" <jo********@microsoft.com> wrote in message >> >> >> news:Py********************@news.siol.net... >> >> >> > >> >> >> > Can someone convert from C# into VB this line for me: >> >> >> > >> >> >> > if (c is System.Web.UI.HtmlControls.HtmlForm) >> >> >> > >> >> >> > >> >> >> > >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> | | |
My other reply was a bit harsh - I'm sure that the SharpDevelop converters
are serious tools. It's just that they are intended (as are the on-line
converters) to handle just the obvious syntax conversion issues and not
subtle conversion issues, entire project conversion, asp.net embedded code
conversion, complex conditional compilation, etc.
--
David Anton www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C# to C++ converter
Instant C++: VB to C++ converter
"Juan T. Llibre" wrote: David,
what is your opinion on the SharpDevelop built-in converters ?
Juan T. Llibre, asp.net MVP aspnetfaq.com : http://www.aspnetfaq.com/ asp.net faq : http://asp.net.do/faq/ foros de asp.net, en español : http://asp.net.do/foros/ =================================== "David Anton" <Da********@discussions.microsoft.com> wrote in message news:93**********************************@microsof t.com... For developerfusion, try some generics or operator overloading... it'll trip it up every time.
The on-line converters only handle the most obvious syntax conversions. You're in for a surprise if you use the results in your production code. -- David Anton www.tangiblesoftwaresolutions.com Instant C#: VB to C# converter Instant VB: C# to VB converter Instant C++: C# to C++ converter Instant C++: VB to C++ converter
"Karl Seguin [MVP]" wrote:
Well: http://www.developerfusion.co.uk/uti...sharptovb.aspx
gave the right conversion. you simply needed to add the brackets {}
Karl
-- http://www.openmymind.net/ "David Anton" <Da********@discussions.microsoft.com> wrote in message news:96**********************************@microsof t.com... >I think Carlos' converter is the best on-line converter, but there are >always > going to be many issues not handled well by any of the on-line converters. > See the following for a partial list: > http://www.tangiblesoftwaresolutions...Converters.htm > -- > David Anton > www.tangiblesoftwaresolutions.com > Instant C#: VB to C# converter > Instant VB: C# to VB converter > Instant C++: C# to C++ converter > Instant C++: VB to C++ converter > > > "Juan T. Llibre" wrote: > >> I'll notify Carlos... >> >> >> >> Juan T. Llibre, asp.net MVP >> aspnetfaq.com : http://www.aspnetfaq.com/ >> asp.net faq : http://asp.net.do/faq/ >> foros de asp.net, en español : http://asp.net.do/foros/ >> =================================== >> "David Anton" <Da********@discussions.microsoft.com> wrote in message >> news:56**********************************@microsof t.com... >> > Poornimab gave the correct translation (same as our converter). >> > The equivalent to the C# "x is y" in VB is "TypeOf x Is y", not "x = >> > y". >> > -- >> > David Anton >> > www.tangiblesoftwaresolutions.com >> > Instant C#: VB to C# converter >> > Instant VB: C# to VB converter >> > Instant C++: C# to C++ converter >> > Instant C++: VB to C++ converter >> > >> > >> > "Juan T. Llibre" wrote: >> > >> >> David, when I used it, it returned : >> >> >> >> >> >> If (c = System.Web.UI.HtmlControls.HtmlForm) Then >> >> End If >> >> >> >> >> >> Is there anything else your translator returns which Carlos' doesn't >> >> return ? >> >> >> >> >> >> >> >> >> >> Juan T. Llibre, asp.net MVP >> >> aspnetfaq.com : http://www.aspnetfaq.com/ >> >> asp.net faq : http://asp.net.do/faq/ >> >> foros de asp.net, en español : http://asp.net.do/foros/ >> >> =================================== >> >> "David Anton" <Da********@discussions.microsoft.com> wrote in message >> >> news:3D**********************************@microsof t.com... >> >> > That on-line converter is usually pretty good, but it fails to >> >> > convert the >> >> > original poster's sample. >> >> > >> >> > Our C# to VB converter (Instant VB) will convert what the on-line >> >> > converters >> >> > can't. >> >> > -- >> >> > David Anton >> >> > www.tangiblesoftwaresolutions.com >> >> > Instant C#: VB to C# converter >> >> > Instant VB: C# to VB converter >> >> > Instant C++: C# to C++ converter >> >> > Instant C++: VB to C++ converter >> >> > >> >> > >> >> > "Juan T. Llibre" wrote: >> >> > >> >> >> Poornimab already gave you the answer, but the next time you need >> >> >> to >> >> >> translate from C# to VB.NET, you might want to save yourself some >> >> >> time >> >> >> and use this nifty online translator : >> >> >> >> >> >> http://www.carlosag.net/Tools/CodeTr...r/default.aspx >> >> >> >> >> >> >> >> >> >> >> >> Juan T. Llibre, asp.net MVP >> >> >> aspnetfaq.com : http://www.aspnetfaq.com/ >> >> >> asp.net faq : http://asp.net.do/faq/ >> >> >> foros de asp.net, en español : http://asp.net.do/foros/ >> >> >> =================================== >> >> >> "John Smith" <jo********@microsoft.com> wrote in message >> >> >> news:Py********************@news.siol.net... >> >> >> > >> >> >> > Can someone convert from C# into VB this line for me: >> >> >> > >> >> >> > if (c is System.Web.UI.HtmlControls.HtmlForm) >> >> >> > >> >> >> > >> >> >> > >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> | | This discussion thread is closed Replies have been disabled for this discussion. Similar topics
19 posts
views
Thread by Lauren Quantrell |
last post: by
|
1 post
views
Thread by Logan X via .NET 247 |
last post: by
|
4 posts
views
Thread by Eric Lilja |
last post: by
|
7 posts
views
Thread by whatluo |
last post: by
|
3 posts
views
Thread by Convert TextBox.Text to Int32 Problem |
last post: by
|
7 posts
views
Thread by patang |
last post: by
|
4 posts
views
Thread by Edwin Knoppert |
last post: by
| |
6 posts
views
Thread by Ken Fine |
last post: by
| | | | | | | | | | | |