B
BH
Hi
what would be the C# equivalent of a VB.NET file that looks like this:
Module Utilities
Public Sub UtilitySubOne ( ByVal arg As String)
// blah blah
End Sub
Public Sub UtilitySubTwo ( ByVal arg As String)
// blah blah
End Sub
End Module
....VB.NET has the concept of a 'Module' where you can create a pile of
generally available calls, but I'm not sure how this 'Module' file idea
translates to C#.
Any help appreciated,
BH
what would be the C# equivalent of a VB.NET file that looks like this:
Module Utilities
Public Sub UtilitySubOne ( ByVal arg As String)
// blah blah
End Sub
Public Sub UtilitySubTwo ( ByVal arg As String)
// blah blah
End Sub
End Module
....VB.NET has the concept of a 'Module' where you can create a pile of
generally available calls, but I'm not sure how this 'Module' file idea
translates to C#.
Any help appreciated,
BH