you can do some shits about it I once used a mixer in asp.net not sure if still works,
one more way ... try to read this I used this once and worked fine back to 2015
https://www.cryptosys.net/pki/manpki/pki...otNet.html
now comes to what I most likely say its the best if u can code in both c# and vb
you can make vb as a reference so u can add or even call it in c# here is what I will attach to make you an illustration
like in vb we have
Code:
[code]
#your code is written here with whatevercalss (here is vbclass)
Public Class VBClass
Code:
Public
Function VBMethod()
Code:
Console.WriteLine("your fucking method ")
Code:
Public
Function AddNumber(ByVal num1 As Integer,
Code:
ByVal num2 As Integer)As Integer
[/code]
now you needa call this shit in c# so here its
Code:
[code]
class Program
Code:
static void Main(string[] args)
Code:
CSharpMethod(); #you needa call here
Code:
VBClass vbClass = new VBClass();
Code:
Console.WriteLine(vbClass.AddNumber(5, 6).ToString());
Code:
public static void CSharpMethod()
Code:
Console.WriteLine("here you go bitch");
[/code]
just note that you needa add that vb as a reference
(29 November, 2019 - 10:25 AM)Jenz_V Wrote: Show MoreTry to convert C# into VB, I think there are a fee tools online that can do that.
i dont think that would be the best if the program is huge the dll will get corrupted