Skip to main content
Version: 0.1.0

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
TypeNameDescription
System.StringparamParameter 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
TypeName
System.Stringparam