VB NET - How to create code converter [C# to VB.Net & VB.Net to C#]

preview_player
Показать описание
Creating Code Converter between C# and VB.Net

.dll Files

Share your links over the internet and Get PAID

This video teach how to create Code Converter between C# and VB.Net user Visual Studio 2010.

You can convert C# code to VB.Net in one click or you can convert VB.Net code to C#.

Рекомендации по теме
Комментарии
Автор

same code i need to write in C# files is it working fine or have to go with other.

ishwarjadhav
Автор

I can't get access to your shared drop box ... Please can you forward it in to my mail? I mean all the dll.file you said we should download.

jamesadjeisawodor
Автор

is source code and .dll we can access?

ishwarjadhav
Автор

possible convert on C#

Public Function XOR_Encrypt(ByVal Input As String, ByVal pass As String) As String
Dim out As New System.Text.StringBuilder
Dim u As Integer
For i As Integer = 0 To Input.Length - 1
Dim tmp As String = Hex(Asc(Input(i)) Xor Asc(pass(u)))
If tmp.Length = 1 Then tmp = "0" & tmp
out.Append(tmp)
If u = pass.Length - 1 Then u = 0 Else u = u + 1
Next
Return out.ToString
End Function



Public Function XOR_Decrypt(ByVal Input As String, ByVal pass As String) As String
Dim out As New System.Text.StringBuilder
Dim u As Integer
For i As Integer = 0 To Input.Length - 1 Step +2
Dim tmp As String = Chr(("&H" & Input.Substring(i, 2)) Xor Asc(pass(u)))
out.Append(tmp)
If u = pass.Length - 1 Then u = 0 Else u = u + 1
Next
Return out.ToString
End Function

abderrahimsolbi
welcome to shbcf.ru