Sample ClassDo Something(Int 32, String) Method
This version of the method takes both an integer and a string parameter.
Definition
Namespace: XMLCommentsExamples
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2025.4.26.0
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2025.4.26.0
C#
public void DoSomething(
int number,
string text
)VB
Public Sub DoSomething (
number As Integer,
text As String
)C++
public:
void DoSomething(
int number,
String^ text
)F#
member DoSomething :
number : int *
text : string -> unit