namespace MyFramework.MyOtherNamespace {
///Make sure the namespace in this assembly doesn't get 'dropped'
public class MyOtherClass {
public string MyProperty {get;set;}
///Hello
public float Hello(int value) {
return 0.0f;
}
///Is it me you're looking for
public float Hello(double value) {
return (float)value;
}
}
}