Hello!.. I am a VB6 programmer and I want to learn basic of C# Programming. So can anyone help me out?..
I just want to learn on "How will I do this in Visual C#"..
this is a sample code from VB6, now, how will I do this in C#?
Sub Routines
Private sub SetValue(ByVal str as String)
'Some statements here...
Call AssignIt("Some String Here")
End Sub
Function
Public Function AssignIt(ByVal str as string) as String
'Some statements here..
AssigntIt = str
End Sub
Can anyone help me...