I have created CMyClass,in which defined one method CallMe().when I build this project MyProject.dll is generated.
Now in some another project, I want to call CallMe of CMyClass .
can anybody tell me how to do it ?
Thanks in advance....
I want restrict the access of superclass's method in subclass
class Parent
attr_accessor :first_name, :last_name
def initialize(first_name, last_name)
@first_name, @last_name = first_name, last_name
end
def full_name
@first_name + " " + @last_name
end
end
class Son < Parent
attr_accessor :first_name
def…
I m getting the below return from ajax call but not able to traverse it please please help.
{
"1": {
"tel1": null,
"status": "1",
"fax": "",
"tel2": null,
"name": "sh_sup1",
"country": "Anguilla",
"creation_time": "2010-06-02 14:09:40",
"created_by":…
WLST Starting and Stopping a WebLogic Environment | Rene van Wijk
Oracle ACE Rene van Wijk explores how to start a server with as little input as possible.
Developing and Enforcing a BYOD Policy | Darin Pendergraft
Darin Pendergraft's post includes links to a recent Mobile Access Policy Survey by SANS as well as…
The Top 10 most popular items shared on the OTN ArchBeat Facebook page for the week of November 11-17, 2012.
Developing and Enforcing a BYOD Policy
Darin Pendergraft's post includes links to a recent Mobile Access Policy Survey by SANS as well as registration information for a Nov 15 webcast featuring security…
After yesterday's report on Emtel Fixed Broadband (I'm still wondering where the 'fixed' part is), I did the same tests on Emtel Mobile Internet. For this I'm using the Huawei E169G HSDPA USB stick, connected to the same machine. Actually, this is my fail-safe internet connection and the system automatically switches…
I want to get multiple file by parsing a input file Through Java.
The Input file contains many fasta format of thousands of protein sequence and I want to generate raw format(i.e., without any comma semicolon and without any extra symbol like "", "[", "]" etc) of each protein sequence.
A fasta sequence starts form…