Python 2, 33 bytes
print len(open(__file__).read())# Python 3, 28 bytes
print(len(*open(__file__)))# Explanation
This opens up the source code using open(__file__).read() and gets its length using len the # prevents any additional code from being read. When the source is doubled so is the length.