I want to throw error, if i used methods from this namespace System.IO
For example,
If i write File.Delete("TempPath") , i have to throw undefined Method..
Printable View
I want to throw error, if i used methods from this namespace System.IO
For example,
If i write File.Delete("TempPath") , i have to throw undefined Method..
just override the namespace. this wont throw any error. but we can hide the methods in the class.
Code Code:
Namespace System.IO Class File End Class Class Path End Class End Namespace