Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DocTest-DropNS-classic-secondary.cs « Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e503770516780c2141ae2ee56989997a7a7724f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace MyFramework.MyOtherNamespace {
	///<summary>Make sure the namespace in this assembly doesn't get 'dropped'</summary>
	public class MyOtherClass {
		public string MyProperty {get;set;}
		///<summary>Hello</summary>
		public float Hello(int value) {
			return 0.0f;
		}
		///<summary>Is it me you're looking for</summary>
		public float Hello(double value) {
			return (float)value;
		}
	}
}