Class Class1
This is a summary from the XML comment in the source code.
Assembly: Project.dll
View Source
Declaration
public class Class1
Methods
Method1(string)
Does pretty much nothing.
var x = new Class1();
var y = x.Method1("test");
Console.WriteLine(y);
View Source
Declaration
public object Method1(string param)
Returns
System.Object
: An object.
Parameters
Type | Name | Description |
---|---|---|
System.String | param | Parameter 1 |
Exceptions
System.ArgumentNullException
Thrown when param is null.
Method2(string?)
Also does nothing.
View Source
Declaration
public static int? Method2(string? param)
Returns
System.Nullable<System.Int32>
Parameters
Type | Name |
---|---|
System.String | param |