2017-08-21 15:34:15 +00:00
|
|
|
namespace MyFramework.MyOtherNamespace {
|
|
|
|
///<summary>Make sure the namespace in this assembly doesn't get 'dropped'</summary>
|
|
|
|
public class MyOtherClass {
|
|
|
|
public string MyProperty {get;set;}
|
2019-09-24 08:53:40 +00:00
|
|
|
///<summary>Hello</summary>
|
2017-08-21 15:34:15 +00:00
|
|
|
public float Hello(int value) {
|
|
|
|
return 0.0f;
|
|
|
|
}
|
2019-09-24 08:53:40 +00:00
|
|
|
///<summary>Is it me you're looking for</summary>
|
|
|
|
public float Hello(double value) {
|
|
|
|
return (float)value;
|
|
|
|
}
|
2017-08-21 15:34:15 +00:00
|
|
|
}
|
|
|
|
}
|